summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kpopuptest.cpp
blob: 43e3c09583ca7f9b9d00980eaf40948eb1831987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <kapplication.h>
#include <qwidget.h>
#include <qcursor.h>
#include "kpopupmenu.h"

class DemoWidget : public QWidget {
private:
    KPopupMenu *menu;
    
void mousePressEvent(QMouseEvent *)
{
    menu->popup(QCursor::pos());
}

void paintEvent(QPaintEvent *)
{
    drawText(32, 32, "Press a Mouse Button!");
}

public:
    DemoWidget() : QWidget()
    {
        menu = new KPopupMenu("Popup Menu:");
        menu->insertItem("Item1");
        menu->insertItem("Item2");
        menu->insertSeparator();
        menu->insertItem("Quit", qApp, SLOT(quit()));
    }       
};

int main(int argc, char **argv)
{
    KApplication app(argc, argv, "kpopupmenutest");
    DemoWidget w;
    app.setMainWidget(&w);
    w.setFont(QFont("helvetica", 12, QFont::Bold), true);
    w.show();
    return app.exec();
}