]> git.lyx.org Git - lyx.git/blobdiff - src/Timeout.h
Dekels tabular/textinset patches
[lyx.git] / src / Timeout.h
index 7afefc3f33d5d581b46fdfeab3e80a991e4dadfd..9cecc49d7a43e8b615f829323d5b783ebf1a1ca5 100644 (file)
@@ -1,7 +1,23 @@
 // -*- C++ -*-
+/* This file is part of
+ * ====================================================== 
+ * 
+ *           LyX, The Document Processor
+ *        
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team.
+ *
+ * ====================================================== */
+
 #ifndef TIMEOUT_H
 #define TIMEOUT_H
 
+#include <config.h>
+
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include <sigc++/signal_system.h>
 
 #ifdef SIGC_CXX_NAMESPACES
@@ -16,13 +32,15 @@ class Timeout {
 public:
        ///
        enum Type {
+               ///
                ONETIME,
+               ///
                CONTINOUS
        };
        ///
        Timeout();
        ///
-       Timeout(int msec, Type = ONETIME);
+       Timeout(unsigned int msec, Type = ONETIME);
        ///
        ~Timeout();
        ///
@@ -36,14 +54,14 @@ public:
        ///
        void emit();
        ///
-       void setType(Type t);
+       Timeout & setType(Type t);
        ///
-       void setTimeout(int msec);
+       Timeout & setTimeout(unsigned int msec);
 private:
        ///
        Type type;
        ///
-       int timeout_ms;
+       unsigned int timeout_ms;
        ///
        int timeout_id;
 };