Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

[Prev: Subclassing and Dynamic Dialogs] [Home] [Next: Creating Database Applications]

Creating Custom Widgets

Custom widgets are created in code. They may comprise a combination of existing widgets but with additional functionality, slots and signals, or they may be written from scratch, or a mixture of both.

TQt Designer provides two mechanisms for incorporating custom widgets:

  1. The original method involves little more than completing a dialog box. Widgets incorporated this way appear as flat pixmaps when added to a form in TQt Designer, even in preview mode. They only appear in their true form at runtime. We'll explain how to create custom widgets using the original approach in "Simple Custom Widgets".

  2. The new method involves embedding the widgets in a plugin. Widgets that are incorporated through plugins appear in their true form in TQt Designer, both when laying out the form and in preview mode. This approach provides more power and flexibility than the original method and is covered in Creating Custom Widgets with Plugins.

Simple Custom Widgets

There are two stages to creating a custom widget. Firstly we must create a class that defines the widget, and secondly we must incorporate the widget into TQt Designer. Creating the widget has to be done whether we are creating a simple custom widget or a plugin, but for simple custom widgets the incorporation into TQt Designer is very easy.

We will create a VCR style widget comprising four buttons, rewind, play, next and stop. The widget will emit signals according to which button is clicked.

Coding the Custom Widget

A custom widget may consist of one or more standard widgets placed together in a particular combination, or may be written from scratch. We will combine some TQPushButton widgets to form the basis of our custom widget.

We'll look at the header file, qt/tools/designer/examples/vcr/vcr.h first.

    #include <ntqwidget.h>

    class Vcr : public TQWidget
    {
        TQ_OBJECT
    public:
        Vcr( TQWidget *parent = 0, const char *name = 0 );
        ~Vcr() {}
    signals:
        void rewind();
        void play();
        void next();
        void stop();
    };

We include ntqwidget.h since we'll be deriving our custom widget from TQWidget. We declare a constructor where the widget will be created and the four signals we want our widget to emit.

Note: Since we're using signals we must also include the TQ_OBJECT macro. This macro also ensures that information about the class is available via the Meta Object System and ensures that TQt Designer will display the correct information about the widget.

The implementation is straightforward. The only function we implement is the constructor. The rest of the file consists of include statements and embedded .xpm images.

    Vcr::Vcr( TQWidget *parent, const char *name )
        : TQWidget( parent, name )
    {
        TQHBoxLayout *layout = new TQHBoxLayout( this );
        layout->setMargin( 0 );

        TQPushButton *rewind = new TQPushButton( TQPixmap( rewind_xpm ), 0, this, "vcr_rewind" );
        layout->addWidget( rewind );

We create a TQHBoxLayout in which we'll place the buttons. We've only shown the rewind button in the code above since all the others are identical except for the names of the buttons, pixmaps and signals. For each of the buttons we require we call the TQPushButton constructor passing it the appropriate embedded pixmap. We then add it to the layout. Finally we connect the button's clicked() signal to the appropriate signal. Since the clicked() signals aren't specific to our widget we want to emit signals that reflect the widget's use. The rewind(), play(), etc. signals are meaningful in the context of our widget so we propagate each button's clicked() signal to the appropriate widget-specific signal.

The implementation is complete, but to make sure that our widget compiles and runs we'll create a tiny test harness. The test harness will require two files, a .pro project file and a main.cpp. The qt/tools/designer/examples/vcr/vcr.pro project file:

TEMPLATE = app
LANGUAGE = C++
TARGET   = vcr

CONFIG  += qt warn_on release
SOURCES += vcr.cpp main.cpp
HEADERS += vcr.h
DBFILE   = vcr.db

The qt/tools/designer/examples/vcr/main.cpp file is also brief:

    #include <ntqapplication.h>
    #include "vcr.h"

    int main( int argc, char ** argv )
    {
        TQApplication app( argc, argv );
        Vcr *vcr = new Vcr;
        vcr->show();
        return app.exec();
    }

Once we're satisfied that the custom widget compiles and runs we are ready to incorporate it into TQt Designer.

In Base-class Templates the creation of a container custom widget is described.

Adding the Custom Widget to TQt Designer

Click Tools|Custom|Edit Custom Widgets to invoke the Edit Custom Widgets dialog.

  1. Click New Widget so that we are ready to add our new widget.

  2. Change the Class name from 'MyCustomWidget' to 'Vcr'.

  3. Click the ellipsis (...) button to the right of the Headerfile line edit to invoke the file Open dialog. Locate vcr.h, select it, and click Open. It will now appear as the header file.

  4. If you have a pixmap that you want to use to identify your widget on the toolbar click the ellipsis button to the right of Pixmap property. (The ellipsis button appears when you click in the Value part of the Properties list by a pixmap or iconSet property.)

    In our example we have the file qt/tools/designer/examples/vcr/play.xpm which we'll use for this purpose.

  5. Since we know the minimum sensible size for our widget we'll put these values into the Size Hint spin boxes. Enter a width of 80 (in the left hand spin box), and a height of 20 (in the right hand spin box).

The remaining items to be completed will depend on the characteristics of the widget you've created. If, for example, your widget can be used to contain other widgets you'd check the Container Widget checkbox. In the case of our Vcr example the only items we need to add are its signals.

Click the Signals tab. Click the New Signal button and type in the signal name 'rewind()'. Click New Signal again and this time type in 'play()'. Add the 'next()' and 'stop()' signals in the same way.

Since our example hasn't any slots or properties we've finished and can click Close. A new icon will appear in TQt Designer's toolbars which represents the new widget. If you create a new form you can add Vcr widgets and connect the Vcr's signals to your slots.

Incorporating custom widgets that have their own slots and properties is achieved in a similar way to adding signals. All the required information is in our custom widget's header file.

Creating Custom Widgets with Plugins

This section will show you how to write a custom widget and how to embed the custom widget into a plugin. There are no restrictions or special considerations that must be taken into account when creating a widget that is destined to become a plugin. If you are an experienced TQt programmer you can safely skip the section on creating a custom widget and go directly to Creating a Plugin.

Be aware that if you use the plugin approach to custom widgets, the plugin needs to be available not only to TQt Designer but also to uic at compile-time.

Creating a Custom Widget

A custom widget is often a specialization (subclass) of another widget or a combination of widgets working together or a blend of both these approaches. If you simply want a collection of widgets in a particular configuration it is easiest to create them, select them as a group, and copy and paste them as required within TQt Designer. Custom widgets are generally created when you need to add new functionality to existing widgets or groups of widgets.

We have two recommendations that you should consider when creating a custom widget for a plugin:

  1. Using TQt's property system will provide TQt Designer users with a direct means of configuring the widget through the property editor. (See the TQt Properties documentation.)

  2. Consider making your widget's public 'set' functions into public slots so that you can perform signal-slot connections with the widget in TQt Designer.

In the course of this chapter we will create a simple but useful widget, 'FileChooser', which we'll later make available in TQt Designer as a plugin. In practice most custom widgets are created to add functionality rather than to compose widgets, so we will create our widget in code rather than using TQt Designer to reflect this approach. FileChooser consists of a TQLineEdit and a TQPushButton. The TQLineEdit is used to hold a file or directory name, the TQPushButton is used to launch a file dialog through which the user can choose a file or directory.

The FileChooser Custom Widget

If you've followed the manual up to this point you may well be able to create this custom widget yourself. If you're confident that you can make your own version of the widget, or have another widget that you want to turn into a plugin, skip ahead to Creating a Plugin. If you prefer to read how we created the widget then read on.

Coding the Widget's Interface

We will work step-by-step through the widget's header file, qt/tools/designer/examples/filechooser/widget/filechooser.h.

    #include <ntqwidget.h>
    #include <ntqwidgetplugin.h>

    class TQLineEdit;
    class TQPushButton;

Our widget will be derived from TQWidget so we include the ntqwidget.h header file. We also forward declare the two classes that our widget will be built from.


 

We include the TQ_OBJECT macro since this is required for classes that declare signals or slots. The TQ_ENUMS declaration is used to register the Mode enumeration. Our widget has two properties, mode, to store whether the user should select a File or a Directory and fileName which stores the file or directory they chose.

    class QT_WIDGET_PLUGIN_EXPORT FileChooser : public TQWidget
    {
        TQ_OBJECT

        TQ_ENUMS( Mode )
        TQ_PROPERTY( Mode mode READ mode WRITE setMode )
        TQ_PROPERTY( TQString fileName READ fileName WRITE setFileName )

    public:
        FileChooser( TQWidget *parent = 0, const char *name = 0);

        enum Mode { File, Directory };

        TQString fileName() const;
        Mode mode() const;

The constructor is declared in the standard way for widgets. We declare two public functions, fileName() to return the filename, and mode() to return the mode.

    public slots:
        void setFileName( const TQString &fn );
        void setMode( Mode m );

    signals:
        void fileNameChanged( const TQString & );

    private slots:
        void chooseFile();

The two 'set' functions are declared as public slots. setFileName() and setMode() set the filename and mode respectively. We declare a single signal, fileNameChanged(). The private slot, chooseFile() is called by the widget itself when its button is clicked.

    private:
        TQLineEdit *lineEdit;
        TQPushButton *button;
        Mode md;

    };

A pointer to TQLineEdit and TQPushButton, as well as a Mode variable are held as private data.

Coding the Implementation

We will work step-by-step through the implementation which is in qt/tools/designer/examples/filechooser/widget/filechooser.cpp.

    FileChooser::FileChooser( TQWidget *parent, const char *name )
        : TQWidget( parent, name ), md( File )
    {

The constructor passes the parent and name to its superclass, TQWidget, and also initializes the private mode data, md, to File mode.

        TQHBoxLayout *layout = new TQHBoxLayout( this );
        layout->setMargin( 0 );

        lineEdit = new TQLineEdit( this, "filechooser_lineedit" );
        layout->addWidget( lineEdit );

We begin by creating a horizontal box layout (TQHBoxLayout) and add a TQLineEdit and a TQPushButton to it.

        connect( lineEdit, SIGNAL( textChanged( const TQString & ) ),
                 this, SIGNAL( fileNameChanged( const TQString & ) ) );

        button = new TQPushButton( "...", this, "filechooser_button" );
        button->setFixedWidth( button->fontMetrics().width( " ... " ) );
        layout->addWidget( button );

        connect( button, SIGNAL( clicked() ),
                 this, SLOT( chooseFile() ) );

We connect the lineEdit's textChanged() signal to the custom widget's fileNameChanged() signal. This ensures that if the user changes the text in the TQLineEdit this fact will be propagated via the custom widget's own signal. The button's clicked() signal is connected to the custom widget's chooseFile() slot which invokes the appropriate dialog for the user to choose their file or directory.

        setFocusProxy( lineEdit );
    }

We set the lineEdit as the focus proxy for our custom widget. This means that when the widget is given focus the focus actually goes to the lineEdit.

    void FileChooser::setFileName( const TQString &fn )
    {
        lineEdit->setText( fn );
    }

    TQString FileChooser::fileName() const
    {
        return lineEdit->text();
    }

The setFileName() function sets the filename in the TQLineEdit, and the fileName() function returns the filename from the TQLineEdit. The setMode() and mode() functions (not shown) are similarly set and return the given mode.

    void FileChooser::chooseFile()
    {
        TQString fn;
        if ( mode() == File )
            fn = TQFileDialog::getOpenFileName( lineEdit->text(), TQString::null, this );
        else
            fn = TQFileDialog::getExistingDirectory( lineEdit->text(),this );

        if ( !fn.isEmpty() ) {
            lineEdit->setText( fn );
            emit fileNameChanged( fn );
        }
    }

When chooseFile() is called it presents the user with a file or directory dialog depending on the mode. If the user chooses a file or directory the TQLineEdit is updated with the chosen file or directory and the fileNameChanged() signal is emitted.

Although these two files complete the implementation of the FileChooser widget it is good practice to write a test harness to check that the widget behaves as expected before attempting to put it into a plugin.

Testing the Implementation

We present a rudimentary test harness which will allow us to run our custom widget. The test harness requires two files, a main.cpp to contain the FileChooser, and a .pro file to create the Makefile from. Here is qt/tools/designer/examples/filechooser/widget/main.cpp:

    #include <ntqapplication.h>
    #include "filechooser.h"

    int main( int argc, char ** argv )
    {
        TQApplication a( argc, argv );
        FileChooser *fc = new FileChooser;
        fc->show();
        return a.exec();
    }

And here is qt/tools/designer/examples/filechooser/widget/filechooser.pro

TEMPLATE = app
LANGUAGE = C++
TARGET   = filechooser

SOURCES += filechooser.cpp main.cpp
HEADERS += filechooser.h
CONFIG  += qt warn_on release
DBFILE  = filechooser.db
DEFINES += FILECHOOSER_IS_WIDGET

We can create the makefile using qmake: qmake -o Makefile filechooser.pro, then we can make and run the harness to test our new widget. Once we're satisfied that the custom widget is robust and has the behaviour we require we can embed it into a plugin.

Creating a Plugin

TQt Plugins can be used to provide self-contained software components for TQt applications. TQt currently supports the creation of five kinds of plugins: codecs, image formats, database drivers, styles and custom widgets. In this section we will explain how to convert our filechooser custom widget into a TQt Designer custom widget plugin.

A TQt Designer custom widget plugin is always derived from TQWidgetPlugin. The amout of code that needs to be written is minimal.

To make your own plugin it is probably easiest to start by copying our example plugin.h and plugin.cpp files and changing 'CustomWidgetPlugin' to the name you wish to use for your widget plugin implementation class. Below we provide an introduction to the header file although it needs no changes beyond class renaming. The implementation file requires simple changes, mostly more class renaming; we will review each function in turn and explain what you need to do.

The CustomWidgetPlugin Implementation

We have called our header file plugin.h and we've called our plugin class CustomWidgetPlugin since we will be using our plugin class to wrap our custom widgets. We present the entire header file to give you an impression of the scope of the implementation required. Most of the functions require just a few lines of code.

    #include <ntqwidgetplugin.h>

    class CustomWidgetPlugin : public TQWidgetPlugin
    {
    public:
        CustomWidgetPlugin();

        TQStringList keys() const;
        TQWidget* create( const TQString &classname, TQWidget* parent = 0, const char* name = 0 );
        TQString group( const TQString& ) const;
        TQIconSet iconSet( const TQString& ) const;
        TQString includeFile( const TQString& ) const;
        TQString toolTip( const TQString& ) const;
        TQString whatsThis( const TQString& ) const;
        bool isContainer( const TQString& ) const;
    };

From qt/tools/designer/examples/filechooser/plugin/plugin.h

The TQWidgetPlugin Functions

Create your own plugin .cpp file by copying our plugin.cpp file and changing all occurrences of 'CustomWidgetPlugin' to the name you wish to use for your widget plugin implementation. Most of the other changes are simply replacing the name of our custom control, 'FileChooser', with the name of your custom control. You may need to add extra else if clauses if you have more than one custom control in your plugin implementation.

We'll now look at the constructor.

    CustomWidgetPlugin::CustomWidgetPlugin()
    {
    }

The constructor does not have to do anything. Simply copy ours with the class name you wish to use for your widget plugin implementation.

No destructor is necessary.

The keys function.

    TQStringList CustomWidgetPlugin::keys() const
    {
        TQStringList list;
        list << "FileChooser";
        return list;
    }

For each widget class that you want to wrap in the plugin implementation you should supply a key by which the class can be identified. This key must be your class's name, so in our example we add a single key, 'FileChooser'.

The create() function.

    TQWidget* CustomWidgetPlugin::create( const TQString &key, TQWidget* parent, const char* name )
    {
        if ( key == "FileChooser" )
            return new FileChooser( parent, name );
        return 0;
    }

In this function we create an instance of the requested class and return a TQWidget pointer to the newly created widget. Copy this function changing the class name and the feature name and create an instance of your widget just as we've done here. (See the TQt Plugin documentation for more information.)

The includeFile() function.

    TQString CustomWidgetPlugin::includeFile( const TQString& feature ) const
    {
        if ( feature == "FileChooser" )
            return "filechooser.h";
        return TQString::null;
    }

This function returns the name of the include file for the custom widget. Copy this function changing the class name, key and include filename to suit your own custom widget.

The group(), iconSet(), toolTip() and whatsThis() functions.

    TQString CustomWidgetPlugin::group( const TQString& feature ) const
    {
        if ( feature == "FileChooser" )
            return "Input";
        return TQString::null;
    }

    TQIconSet CustomWidgetPlugin::iconSet( const TQString& ) const
    {
        return TQIconSet( TQPixmap( filechooser_pixmap ) );
    }

    TQString CustomWidgetPlugin::includeFile( const TQString& feature ) const
    {
        if ( feature == "FileChooser" )
            return "filechooser.h";
        return TQString::null;
    }

    TQString CustomWidgetPlugin::toolTip( const TQString& feature ) const
    {
        if ( feature == "FileChooser" )
            return "File Chooser Widget";
        return TQString::null;
    }

    TQString CustomWidgetPlugin::whatsThis( const TQString& feature ) const
    {
        if ( feature == "FileChooser" )
            return "A widget to choose a file or directory";
        return TQString::null;
    }

We use the group() function to identify which TQt Designer toolbar group this custom widget should be part of. If we use a name that is not in use TQt Designer will create a new toolbar group with the given name. Copy this function, changing the class name, key and group name to suit your own widget plugin implementation.

The iconSet() function returns the pixmap to use in the toolbar to represent the custom widget. The toolTip() function returns the tooltip text and the whatsThis() function returns the Whats This text. Copy each of these functions changing the class name, key and the string you return to suit your own widget plugin implementation.

The isContainer() function.

    bool CustomWidgetPlugin::isContainer( const TQString& ) const
    {
        return FALSE;
    }

Copy this function changing the class name to suit your widget plugin implementation. It should return TRUE if your custom widget can contain other widgets, e.g. like TQFrame, or FALSE if it must not contain other widgets, e.g. like TQPushButton.

The TQ_EXPORT_PLUGIN macro.

    TQ_EXPORT_PLUGIN( CustomWidgetPlugin )

This macro identifies the module as a plugin -- all the other code simply implements the relevant interface, i.e. wraps the classes you wish to make available.

This macro must appear once in your plugin. It should be copied with the class name changed to the name of your plugin's class. (See the TQt Plugin documentation for more information on the plugin entry point.)

Each widget you wrap in a widget plugin implementation becomes a class that the plugin implementation offers. There is no limit to the number of classes that you may include in an plugin implementation.

The Project File

The project file for a plugin is somewhat different from an application's project file but in most cases you can use our project file changing only the HEADERS and SOURCES lines.

TEMPLATE = lib
LANGUAGE = C++
TARGET   = filechooser

SOURCES  += plugin.cpp ../widget/filechooser.cpp
HEADERS  += plugin.h ../widget/filechooser.h
DESTDIR   = ../../../../../plugins/designer

target.path=$$plugins.path

INSTALLS    += target
CONFIG      += qt warn_on release plugin
INCLUDEPATH += $$QT_SOURCE_TREE/tools/designer/interfaces
DBFILE       = plugin.db

qt/tools/designer/examples/filechooser/plugin/plugin.pro

Change the HEADERS line to list your plugin's header file plus a header file for each of your widgets. Make the equivalent change for the SOURCES line. If you create a Makefile with qmake and make the project the plugin will be created and placed in a directory where TQt Designer can find it. The next time you run TQt Designer it will detect your new plugin and load it automatically, displaying its icon in the toolbar you specified.

Using the Widget Plugin

Once the plugin has been compiled it will automatically be found and loaded by TQt Designer the next time TQt Designer is run. Use your custom widget just like any other.

If you want to use the plugin in another of your projects you can link against it by adding an appropriate line to the project, e.g. by adding a line like this to the project's .pro file:

LIBS += filechooser.lib

When you want to distribute your application, include the compiled plugin with the executable. Install the plugin in plugins/widgets subdirectory of the TQt installation directory. If you don't want to use the standard plugin path, have your installation process determine the path you want to use for the plugin, and save the path, e.g. using TQSettings, for the application to read when it runs. The application can then call TQApplication::addLibraryPath() with this path and your plugins will be available to the application. Note that the final part of the path, i.e. styles, widgets, etc. cannot be changed.

Plugins and Threaded Applications

If you want to build a plugin which you want to use with a threaded TQt library (whether or not the plugin itself uses threads) you must use a threaded environment. Specifically, you must use a threaded TQt library, and you must build TQt Designer with that library. Your .pro file for your plugin must include the line:

    CONFIG += thread

Do not mix the normal TQt library and the threaded TQt library in an application. If your application uses the threaded TQt library, you should not link with the normal TQt library. Nor should you dynamically load the normal TQt library or dynamically load another library, e.g. a plugin, that depends on the normal TQt library. On some systems, mixing threaded and non-threaded libraries or plugins will corrupt the static data used in the TQt library.

[Prev: Subclassing and Dynamic Dialogs] [Home] [Next: Creating Database Applications]


Copyright © 2007 TrolltechTrademarks
TQt 3.3.8