summaryrefslogtreecommitdiffstats
path: root/examples/popup/popup.h
blob: d8a282363b8858cc77374962323db38367e8e639 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/****************************************************************************
**
** Definition of something or other
**
** Created : 979899
**
** Copyright (C) 1997-2008 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#ifndef POPUP_H
#define POPUP_H
#include <ntqlabel.h>
#include <ntqpushbutton.h>
#include <ntqlineedit.h>

class FancyPopup : public TQLabel
{
    TQ_OBJECT
public:
    FancyPopup( TQWidget* parent = 0, const char*  name=0);
    
    void popup( TQWidget* parent = 0);
protected:
    virtual void mouseMoveEvent( TQMouseEvent * );
    virtual void mouseReleaseEvent( TQMouseEvent * );
    virtual void closeEvent( TQCloseEvent * );
    
private:
    TQWidget* popupParent;
    int moves;
};


 class Frame : public TQFrame
 {
     TQ_OBJECT
 public:
     Frame( TQWidget *parent=0, const char*  name=0);

 protected:

 private slots:
     void button1Clicked();
     void button2Pressed();
     
 private:
     TQPushButton *button1;
     TQPushButton *button2;
     
     TQFrame* popup1;
     FancyPopup* popup2;
 };

#endif