aboutsummaryrefslogtreecommitdiff
path: root/src/CommandDialog.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-19 18:15:19 (GMT)
committerfluxgen <fluxgen>2003-12-19 18:15:19 (GMT)
commit7287a0f11e4fe4fe95dbc063dc3a8524463bfa06 (patch)
tree3b01af5d981f0dab06dbfef9d6090d9847a5fd5e /src/CommandDialog.hh
parent6c647097c218cae3eabf2d380e603177b16ce8fc (diff)
downloadfluxbox-7287a0f11e4fe4fe95dbc063dc3a8524463bfa06.zip
fluxbox-7287a0f11e4fe4fe95dbc063dc3a8524463bfa06.tar.bz2
added post command
Diffstat (limited to 'src/CommandDialog.hh')
-rw-r--r--src/CommandDialog.hh10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/CommandDialog.hh b/src/CommandDialog.hh
index 2bc0678..84ed01c 100644
--- a/src/CommandDialog.hh
+++ b/src/CommandDialog.hh
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: CommandDialog.hh,v 1.1 2003/12/19 03:53:21 fluxgen Exp $ 23// $Id: CommandDialog.hh,v 1.2 2003/12/19 18:15:19 fluxgen Exp $
24 24
25#ifndef RUNCOMMANDDIALOG_HH 25#ifndef RUNCOMMANDDIALOG_HH
26#define RUNCOMMANDDIALOG_HH 26#define RUNCOMMANDDIALOG_HH
@@ -29,6 +29,8 @@
29#include "FbTk/TextButton.hh" 29#include "FbTk/TextButton.hh"
30#include "FbTk/Font.hh" 30#include "FbTk/Font.hh"
31#include "FbTk/GContext.hh" 31#include "FbTk/GContext.hh"
32#include "FbTk/Command.hh"
33#include "FbTk/RefCount.hh"
32 34
33class BScreen; 35class BScreen;
34 36
@@ -40,10 +42,11 @@ public:
40 virtual ~CommandDialog(); 42 virtual ~CommandDialog();
41 43
42 void setText(const std::string &text); 44 void setText(const std::string &text);
43 45 void setPostCommand(FbTk::RefCount<FbTk::Command> &postcommand) { m_postcommand = postcommand; }
44 void show(); 46 void show();
45 void hide(); 47 void hide();
46 48
49 void exposeEvent(XExposeEvent &event);
47 void motionNotifyEvent(XMotionEvent &event); 50 void motionNotifyEvent(XMotionEvent &event);
48 void buttonPressEvent(XButtonEvent &event); 51 void buttonPressEvent(XButtonEvent &event);
49 void handleEvent(XEvent &event); 52 void handleEvent(XEvent &event);
@@ -51,13 +54,14 @@ public:
51 54
52private: 55private:
53 void init(); 56 void init();
54
55 void render(); 57 void render();
58 void updateSizes();
56 59
57 FbTk::Font m_font; 60 FbTk::Font m_font;
58 FbTk::TextBox m_textbox; 61 FbTk::TextBox m_textbox;
59 FbTk::TextButton m_label; 62 FbTk::TextButton m_label;
60 FbTk::GContext m_gc; 63 FbTk::GContext m_gc;
64 FbTk::RefCount<FbTk::Command> m_postcommand; ///< command to do after the first command was issued (like reconfigure)
61 BScreen &m_screen; 65 BScreen &m_screen;
62 int m_move_x, m_move_y; 66 int m_move_x, m_move_y;
63 Pixmap m_pixmap; 67 Pixmap m_pixmap;