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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
//
// TXDialog.h
//
// A TXDialog is a pop-up dialog window. The dialog can be made visible by
// calling its show() method. Dialogs can be modal or non-modal. For a modal
// dialog box, the show() method only returns when the dialog box has been
// dismissed. For a non-modal dialog box, the show() method returns
// immediately.
//
#ifndef __TXDIALOG_H__
#define __TXDIALOG_H__
#include <rdr/Exception.h>
#include "TXWindow.h"
#include <errno.h>
class TXDialog : public TXWindow, public TXDeleteWindowCallback {
public:
TXDialog(Display* dpy_, int width, int height, const char* name,
bool modal_=false)
: TXWindow(dpy_, width, height), done(false), ok(false), modal(modal_)
{
toplevel(name, this);
resize(width, height);
}
virtual ~TXDialog() {}
// show() makes the dialog visible. For a modal dialog box, this processes X
// events until the done flag has been set, after which it returns the value
// of the ok flag. For a non-modal dialog box it always returns true
// immediately.
bool show() {
ok = false;
done = false;
initDialog();
raise();
map();
if (modal) {
while (true) {
TXWindow::handleXEvents(dpy);
if (done) {
return ok;
}
fd_set rfds;
FD_ZERO(&rfds);
FD_SET(ConnectionNumber(dpy), &rfds);
int n = select(FD_SETSIZE, &rfds, nullptr, nullptr, nullptr);
if (n < 0) throw rdr::socket_error("select", errno);
}
}
return true;
}
// initDialog() can be overridden in a derived class. Typically it is used
// to make sure that checkboxes have the right state, etc.
virtual void initDialog() {}
// resize() is overridden here to re-center the dialog
void resize(int w, int h) {
TXWindow::resize(w,h);
int dpyWidth = WidthOfScreen(DefaultScreenOfDisplay(dpy));
int dpyHeight = HeightOfScreen(DefaultScreenOfDisplay(dpy));
setUSPosition((dpyWidth - width() - 10) / 2, (dpyHeight - height() - 30) / 2);
}
protected:
void deleteWindow(TXWindow* /*w*/) override {
ok = false;
done = true;
unmap();
}
bool done;
bool ok;
bool modal;
};
#endif
|