一个QAction的例子(转)

 

Walkthrough: A Simple Application withActions

While reading through the implementation of the ApplicationWindow constructor you have maybe askedyourself: "The fileOpen tool-button in the toolbar doesexactly the same thing as the File->Open menu-entry.Their "What’s this?" help is the same, the icons common, the sameslot is connected to both them ... Shouldn’t it be possible to savesome code and don’t invent the wheel twice?"

Indeed, it is. In modern GUI-application programming you willuse so called actions to do this. An action collects allthe common items (icon, tooltip, menu-entry text, shortcuts,"What’s this?" help-text and what to do -- the actual action)together. Whenever this action is required (in the toolbar, as amenu-entry) all the programmer has to do is to insert the action inthe respective toolbar or menu. Its appearance (as a tool-button ora menu-entry) is something, the programmer does not has to worryabout -- it’s obvious from the context.

With the QActionclass, Qt provides you with everything you need to use thisstriking concept. So let’s write an ApplicationWindowconstructor that makes use of actions.

The ApplicationWindow constructor with Actions

    ApplicationWindow::ApplicationWindow()
: QMainWindow( 0, "example application main window", WDestructiveClose )
{
printer = new QPrinter;

Nothing new so far. But with the next lines...

        QAction * fileNewAction;
QAction * fileOpenAction;
QAction * fileSaveAction, * fileSaveAsAction, * filePrintAction;
QAction * fileCloseAction, * fileQuitAction;

... the difference becomes obvious. Here we define the actionsour application is supposed to undertake: it should create a neweditor-instance (fileNewAction), open a file, save a file,save it under a different name, print the content of the editor,close an editor window and quit the entire application.

        fileNewAction = new QAction( "New", "&New", CTRL+Key_N, this, "new" );

The first one has the name new and can be reached viathe accelerator Ctrl+N. When used as a menu-entry it willprovide the entry New and can be reached via theaccelerator Alt-N (&N). As we won’t set aspecial tooltip-text, the text New with the acceleratorCtrl+N in brackets will show up when a user holds themouse over a tool-button and does nothing.

        connect( fileNewAction, SIGNAL( activated() ) , this,
SLOT( newDoc() ) );

When the action becomes activated (the user chooses therespective menu-entry or clicks an appropriate tool-button), itconnects to the newDoc() slot.

        fileOpenAction = new QAction( "Open File", QPixmap( fileopen ), "&Open",
CTRL+Key_O, this, "open" );
connect( fileOpenAction, SIGNAL( activated() ) , this, SLOT( choose() ) );

The same way we create an Open File action andconnect its activated() signal to the choose() slot. There is however a novelty: thefileOpenAction (unlike fileNewAction) is assigneda pixmap (the one included with the fileopen.xpmfile).

        const char * fileOpenText = "

"
"Click this button to open a new file.
"
"You can also select the Open command "
"from the File menu.

";

For the fileOpenAction we want to provide "What’sThis?" help and therefore define an appropriate rich-text.

        QMimeSourceFactory::defaultFactory()->setPixmap( "fileopen",
fileOpenAction->iconSet().pixmap() );

As fileOpenText makes use of a pixmap, we have toinform the rich-text engine that it should provide the pixmapdefined for fileOpenAction whenever a rich-text asks foran image-source named fileopen.

The slightly complex procedure to gain the pixmap from theaction is due to the fact that a QAction isnot simply assigned a pixmap but an entire iconset. A QIconSetprovides up to six pixmaps suited for different sizes (large,small) and modes (active, disabled etc.). As we initially fedfileOpenAction with just one pixmap its iconset will becalculated from it automatically.

For simplicity reasons we want the icon in the "What’s this?"text to be the same we used in the fileOpenActionconstructor. This is done by using QIconSet::pixmap()upon fileOpenAction’s iconSet().

        fileOpenAction->setWhatsThis( fileOpenText );

Finally we assign "What’s this?" help to thefileOpenAction.

        fileSaveAction = new QAction( "Save File", QPixmap( filesave ),
"&Save", CTRL+Key_S, this, "save" );
connect( fileSaveAction, SIGNAL( activated() ) , this, SLOT( save() ) );

const char * fileSaveText = "

Click this button to save the file you "
"are editing. You will be prompted for a file name./"
"You can also select the Save command "
"from the File menu.

";
fileSaveAction->setWhatsThis( fileSaveText );

The same way we create a Save File action witha pixmap, "What’s this?" help and the more common items likemenu-entry text and accelerator. Note that we don’t have to botherwith the rich-text engine because the pixmap is not used infileSaveText. When activated the fileSaveActionwill call the save()slot.

        fileSaveAsAction = new QAction( "Save File As", "Save &as", 0,  this,
"save as" );
connect( fileSaveAsAction, SIGNAL( activated() ) , this,
SLOT( saveAs() ) );
fileSaveAsAction->setWhatsThis( fileSaveText );

For the Save File As action we reusefileSaveText but do without a pixmap. On activation, thisaction calls the saveAs() slot.

        filePrintAction = new QAction( "Print File", QPixmap( fileprint ),
"&Print", CTRL+Key_P, this, "print" );
connect( filePrintAction, SIGNAL( activated() ) , this,
SLOT( print() ) );

const char * filePrintText = "Click this button to print the file you "
"are editing./ You can also select the Print "
"command from the File menu.";
filePrintAction->setWhatsThis( filePrintText );

The Print File action -- with anactivated() signal connected to print()-- looks very much like fileSaveText.

        fileCloseAction = new QAction( "Close", "&Close", CTRL+Key_W, this,
"close" );
connect( fileCloseAction, SIGNAL( activated() ) , this,
SLOT( close() ) );
fileQuitAction = new QAction( "Quit", "&Quit", CTRL+Key_Q, this,
"quit" );
connect( fileQuitAction, SIGNAL( activated() ) , qApp,
SLOT( closeAllWindows() ) );

For the last two actions, fileCloseAction andfileQuitAction, we do it the easy way: no "What’s this?",no pixmaps. Thus we have defined all the actions we need.

The only thing left is to use them as menu- andtoolbar-entries.

        // populate a tool bar with some actions

QToolBar * fileTools = new QToolBar( this, "file operations" );
fileTools->setLabel( "File Operations" );

First we create a toolbar in this window and define acaption for it.

As actions that weren’t assigned a pixmap are quite useless in atoolbar we’ll restrict ourselves to three tool-buttons for opening,saving and printing files.

        fileOpenAction->addTo( fileTools );

The first tool-button is easily installed: All we have to do isto add the fileOpenAction to the fileToolstoolbar.

        fileSaveAction->addTo( fileTools );
filePrintAction->addTo( fileTools );

The same easy procedure applies to fileSaveAction andfilePrintAction.

        (void)QWhatsThis::whatsThisButton( fileTools );

To provide the user with a means to toggle his or her mouse in"What’s this?" mode, we need a fourth icon in the toolbar: the(predefined) "What’s this?" button.

        // populate a menu with all actions

QPopupMenu * file = new QPopupMenu( this );
menuBar()->insertItem( "&File", file );

Next we install the newly created file popup-menu inthe menu bar. After we’re done with this, we populate the menu...

        fileNewAction->addTo( file );
fileOpenAction->addTo( file );
fileSaveAction->addTo( file );
fileSaveAsAction->addTo( file );

... with some menu-entries derived from actions, ...

        file->insertSeparator();

... a separator ...

        filePrintAction->addTo( file );
file->insertSeparator();
fileCloseAction->addTo( file );
fileQuitAction->addTo( file );

... and more actions and separators.

The rest of the constructor ...

        menuBar()->insertSeparator();

// add a help menu

QPopupMenu * help = new QPopupMenu( this );
menuBar()->insertItem( "&Help", help );
help->insertItem( "&About", this, SLOT(about()), Key_F1 );
help->insertItem( "About &Qt", this, SLOT(aboutQt()) );
help->insertSeparator();
help->insertItem( "What’s &This", this, SLOT(whatsThis()),
SHIFT+Key_F1 );

// create and define the central widget

e = new QTextEdit( this, "editor" );
e->setFocus();
setCentralWidget( e );
statusBar()->message( "Ready", 2000 );

resize( 450, 600 );
}

... is exactly the same as in the tool-button and menu-entry version.

See also Step-by-stepExamples.


欢迎您使用http://Blogmove.cn提供的"博客搬家"和"博文三窟"服务.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值