Namespaces
Variants
Actions
(Difference between revisions)

Archived:Creating Context Menu from QPushButton

Jump to: navigation, search
Line 77: Line 77:
 
}
 
}
 
</code>
 
</code>
In the constructor we create a {{Icode|QWidget}} (widget) of size '''400x500''' along with a  {{Icode|QHBoxLayout}} (Layout). We  create the {{Icode|QMenu}} (menu) and add items in the menu. Button have been created using {{Icode|QPushButton}} and add the button to the widget using {{Icode|addWidget()}} and then set the widget layout through {{Icode|setLayout()}} method . {{Icode|setStyleSheet()}}  property holds the widget's style sheet.
+
 
 +
In the constructor we create a {{Icode|QWidget}} (widget) of size '''400x500''' along with a  {{Icode|QHBoxLayout}} (Layout). We  create the {{Icode|QMenu}} (menu) and add items in the menu. Button have been created using {{Icode|QPushButton}} and add the button to the widget using {{Icode|addWidget()}} and then set the widget layout through {{Icode|setLayout()}} method . {{Icode|setStyleSheet()}}  property holds the widget's style sheet.
  
  

Revision as of 17:57, 10 May 2011

{{{width}}}
Article Metadata

Tested with
Devices(s): Emulator/ N8

Compatibility
Platform(s): S60 3rd Edition, S60 5th Edition

Article
Keywords: QPushButton
Created: (27 Jun 2009)
Last edited: somnathbanik (10 May 2011)


Contents

Introduction

This article will help us to know how can we create style popup menu using push button in Qt

For creating push button we will use QPushButton. This turns the push button into a menu button, which in some styles will produce a small triangle to the right of the button's text.


Class Definition

#include <QMainWindow>
#include "QHBoxLayout"
#include "QPushButton"
 
namespace Ui {
class Button;
}
 
class Button : public QMainWindow
{
Q_OBJECT
 
public:
explicit Button(QWidget *parent = 0);
~Button();
private:
QWidget* win;
QHBoxLayout *lay;
QMenu *menu;
QPushButton* but1;
};
 
#endif // BUTTON_H

We implement the Push Button in a class called Button, which we derive from QMainWindow. Here we are particularly interested the constructor, so lets discuss below about the constructor in the Class Implementation.


Class Implementation

#include "button.h"
Button::Button(QWidget *parent) :
QMainWindow(parent)
 
{
 
win=new QWidget(this);
win->resize(400,500);
lay=new QHBoxLayout(this);
menu=new QMenu(this);
menu->addMenu("Nokia");
menu->addMenu("N96");
menu->addMenu("N97");
but1=new QPushButton("Menu",this);
but1->setMenu(menu);
lay->addWidget(but1);
win->setLayout(lay);
win->setStyleSheet("* { background-color:rgb(125,100,50);color:rgb(200,150,100); padding: 7px}}");
}
 
Button::~Button()
{
 
}

In the constructor we create a QWidget (widget) of size 400x500 along with a QHBoxLayout (Layout). We create the QMenu (menu) and add items in the menu. Button have been created using QPushButton and add the button to the widget using addWidget() and then set the widget layout through setLayout() method . setStyleSheet() property holds the widget's style sheet.


Screenshot

Mybutton001001.jpg

Source Code

The full source code presented in this article is available here File:Button.zip


Related Links

458 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved