aboutsummaryrefslogtreecommitdiff
path: root/SrcUnix/espws-2.0/CheckButton.h
diff options
context:
space:
mode:
Diffstat (limited to 'SrcUnix/espws-2.0/CheckButton.h')
-rw-r--r--SrcUnix/espws-2.0/CheckButton.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/SrcUnix/espws-2.0/CheckButton.h b/SrcUnix/espws-2.0/CheckButton.h
new file mode 100644
index 0000000..77d9273
--- /dev/null
+++ b/SrcUnix/espws-2.0/CheckButton.h
@@ -0,0 +1,52 @@
+//
+// "$Id: CheckButton.h,v 1.3 2000/01/04 13:45:50 mike Exp $"
+//
+// CheckButton definitions for the Common UNIX Printing System (CUPS).
+//
+// Copyright 1997-2000 by Easy Software Products.
+//
+// These coded instructions, statements, and computer programs are the
+// property of Easy Software Products and are protected by Federal
+// copyright law. Distribution and use rights are outlined in the file
+// "LICENSE.txt" which should have been included with this file. If this
+// file is missing or damaged please contact Easy Software Products
+// at:
+//
+// Attn: CUPS Licensing Information
+// Easy Software Products
+// 44141 Airport View Drive, Suite 204
+// Hollywood, Maryland 20636-3111 USA
+//
+// Voice: (301) 373-9603
+// EMail: cups-info@cups.org
+// WWW: http://www.cups.org
+//
+
+#ifndef _CHECKBUTTON_H_
+# define _CHECKBUTTON_H_
+
+//
+// Include necessary headers.
+//
+
+#include <FL/Fl_Button.H>
+
+
+//
+// CheckButton class...
+//
+
+class CheckButton : public Fl_Button
+{
+protected:
+ virtual void draw();
+
+public:
+ CheckButton(int x, int y, int w, int h, const char *l = 0);
+};
+
+#endif // !_CHECKBUTTON_H_
+
+//
+// End of "$Id: CheckButton.h,v 1.3 2000/01/04 13:45:50 mike Exp $".
+//