Sponsored Content
Top Forums Programming Trying to install X-Designer from Sun studio suite. Post 302458910 by mghis on Saturday 2nd of October 2010 04:42:17 PM
Old 10-02-2010
Trying to install X-Designer from Sun studio suite.

Hi all.
I'm trying to install Sun Studio on my Ubuntu 10.4 pc because
I wanna use X-Designer (it is a Motif GUI builder), that should be in that suite.

I downloaded the tar package build for linux and installed
the deps. Sun Studio and the Sun C Compiler work fine, but
i cannot find X-Designer.

Can you help me? Thank you for any reply!

PS: I hope that i posted in the right section.

---------- Post updated at 10:42 PM ---------- Previous update was at 09:05 PM ----------

Okay, i solved.
The X-Designer was in the version 11, not 12 (the latest).
I installed that one and now all is working.
 

7 More Discussions You Might Find Interesting

1. Solaris

Sun Studio problem

I am using Sun Studio. But there is problem with it. When my PC is connected to INTERNET then there is no problem in starting Sun Studio. But When my PC is not connected to INTERNET then there is problem in starting Sun Studio. With out INTERNET i run sunstudio but after waiting long time nothing... (0 Replies)
Discussion started by: mansoorulhaq
0 Replies

2. Solaris

Sun Studio 11 install on Solaris 8 hanging

I am trying to install Sun Studio 11 on a Solaris 8 server. It gets through the install of patches then hangs with 20% of the overall install done and 0% of the software install done. It seems to be running /tmp/SolarisNativeToolkit_3.0.2_1 and is hanging. I have made multiple attempts and it... (6 Replies)
Discussion started by: jwilloughby
6 Replies

3. Solaris

Oracle E-Business Suite @ Sun ZFS

Hi, Is there any known issue Oracle 11i application install on Sun ZFS? (0 Replies)
Discussion started by: KhawHL
0 Replies

4. Solaris

Sun Studio 10 + Boost 1.36

Is it possible to build Boost 1.35 using Sun Studio 10? I can build Boost 1.35 using Sun Studio 11 successful. However, i'm unable to build it using Sun Studio 10 using the exact method. I really apprecaite if any expert can help on this. Thanks, (2 Replies)
Discussion started by: shingpui
2 Replies

5. Solaris

Sun Studio 11 in OpenSolaris

Install Sun Studio 11 on OpenSolaris 2009.06 When run IDE - system return error: touch: cannot change times on /export/home/iktomy/.sunstudio/11-SunOS-i386/system/dontshowisw: Permission denied /opt/SUNWspro/prod/scripts/jdk_chooser: line 131: cat: command not found... (0 Replies)
Discussion started by: Iktomy
0 Replies

6. Solaris

Sun One Studio 12

Hi, Do you know where I can get a copy of Sun One Studio 12? I've looked on the Oracle Website but cannot find it to download!:confused: Thanks, Sparcman (1 Reply)
Discussion started by: sparcman
1 Replies

7. Solaris

pkgadd will not install solaris studio 12.3

I downloaded Solaris 10 OS on x86, SVR4 installer to my desktop and ran digest -a md5 on the downloaded file and the hash values matched. I then ran bunzip2 followed by pkgadd -d SolarisStudio12.3-solaris-x86-pkg and am getting the following error: pkgadd: ERROR: attempt to process... (14 Replies)
Discussion started by: twk
14 Replies
QWidgetPlugin(3qt)														QWidgetPlugin(3qt)

NAME
QWidgetPlugin - Abstract base for custom QWidget plugins SYNOPSIS
#include <qwidgetplugin.h> Public Members QWidgetPlugin () ~QWidgetPlugin () virtual QStringList keys () const = 0 virtual QWidget * create ( const QString & key, QWidget * parent = 0, const char * name = 0 ) = 0 virtual QString group ( const QString & key ) const virtual QIconSet iconSet ( const QString & key ) const virtual QString includeFile ( const QString & key ) const virtual QString toolTip ( const QString & key ) const virtual QString whatsThis ( const QString & key ) const virtual bool isContainer ( const QString & key ) const DESCRIPTION
The QWidgetPlugin class provides an abstract base for custom QWidget plugins. The widget plugin is a simple plugin interface that makes it easy to create custom widgets that can be included in forms using Qt Designer and used by applications. Writing a widget plugin is achieved by subclassing this base class, reimplementing the pure virtual functions keys(), create(), group(), iconSet(), includeFile(), toolTip(), whatsThis() and isContainer(), and exporting the class with the Q_EXPORT_PLUGIN macro. See the Qt Designer manual's, 'Creating Custom Widgets' section in the 'Creating Custom Widgets' chapter, for a complete example of a QWidgetPlugin. See also the Plugins documentation and the QWidgetFactory class that is supplied with Qt Designer. See also Plugins. MEMBER FUNCTION DOCUMENTATION
QWidgetPlugin::QWidgetPlugin () Constructs a widget plugin. This is invoked automatically by the Q_EXPORT_PLUGIN macro. QWidgetPlugin::~QWidgetPlugin () Destroys the widget plugin. You never have to call this explicitly. Qt destroys a plugin automatically when it is no longer used. QWidget * QWidgetPlugin::create ( const QString & key, QWidget * parent = 0, const char * name = 0 ) [pure virtual] Creates and returns a QWidget object for the widget key key. The widget key is the class name of the required widget. The name and parent arguments are passed to the custom widget's constructor. See also keys(). QString QWidgetPlugin::group ( const QString & key ) const [virtual] Returns the group (toolbar name) that the custom widget of class key should be part of when Qt Designer loads it. The default implementation returns QString::null. QIconSet QWidgetPlugin::iconSet ( const QString & key ) const [virtual] Returns the iconset that Qt Designer should use to represent the custom widget of class key in the toolbar. The default implementation returns an null iconset. QString QWidgetPlugin::includeFile ( const QString & key ) const [virtual] Returns the name of the include file that Qt Designer and uic should use to include the custom widget of class key in generated code. The default implementation returns QString::null. bool QWidgetPlugin::isContainer ( const QString & key ) const [virtual] Returns TRUE if the custom widget of class key can contain other widgets, e.g. like QFrame; otherwise returns FALSE. The default implementation returns FALSE. QStringList QWidgetPlugin::keys () const [pure virtual] Returns the list of widget keys this plugin supports. These keys must be the class names of the custom widgets that are implemented in the plugin. See also create(). QString QWidgetPlugin::toolTip ( const QString & key ) const [virtual] Returns the text of the tooltip that Qt Designer should use for the custom widget of class key's toolbar button. The default implementation returns QString::null. QString QWidgetPlugin::whatsThis ( const QString & key ) const [virtual] Returns the text of the whatsThis text that Qt Designer should use when the user requests whatsThis help for the custom widget of class key. The default implementation returns QString::null. SEE ALSO
http://doc.trolltech.com/qwidgetplugin.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qwidgetplugin.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QWidgetPlugin(3qt)
All times are GMT -4. The time now is 01:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy