aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-09-10 09:51:58 (GMT)
committerfluxgen <fluxgen>2003-09-10 09:51:58 (GMT)
commit7df61abcbd9c0e533ad34d55d6e42e7a22b0b024 (patch)
treee815025c8e8f538b76228bf3f97f4a626fc1fe7c /src/fluxbox.hh
parentdd97388f198b5299b8aaab646413158a65fe4c5f (diff)
downloadfluxbox-7df61abcbd9c0e533ad34d55d6e42e7a22b0b024.zip
fluxbox-7df61abcbd9c0e533ad34d55d6e42e7a22b0b024.tar.bz2
added updateDelayTime resource
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index 5aa44a7..6459385 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.hh,v 1.71 2003/08/11 17:15:51 fluxgen Exp $ 25// $Id: fluxbox.hh,v 1.72 2003/09/10 09:51:58 fluxgen Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -97,6 +97,7 @@ public:
97 BScreen *searchScreen(Window w); 97 BScreen *searchScreen(Window w);
98 98
99 inline const Time &getDoubleClickInterval() const { return resource.double_click_interval; } 99 inline const Time &getDoubleClickInterval() const { return resource.double_click_interval; }
100 inline long getUpdateDelayTime() const { return resource.update_delay_time; }
100 inline const Time &getLastTime() const { return m_last_time; } 101 inline const Time &getLastTime() const { return m_last_time; }
101 102
102 void addAtomHandler(AtomHandler *atomh); 103 void addAtomHandler(AtomHandler *atomh);
@@ -213,6 +214,7 @@ private:
213 struct resource { 214 struct resource {
214 Time double_click_interval; 215 Time double_click_interval;
215 timeval auto_raise_delay; 216 timeval auto_raise_delay;
217 long update_delay_time;
216 } resource; 218 } resource;
217 219
218 220