summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/RepeatButton.h
diff options
context:
space:
mode:
authorJan Darmochwal2010-07-13 17:55:06 +0200
committerJan Darmochwal2010-07-13 17:55:06 +0200
commitf29300c556e541f2bf1b63ed8c6399a6c2044c8d (patch)
tree4a549ef967177e82e6b20536f9484e8461893c7b /fltk/fltk/RepeatButton.h
parentinitial qt4 version (diff)
downloadvmchooser-f29300c556e541f2bf1b63ed8c6399a6c2044c8d.tar.gz
vmchooser-f29300c556e541f2bf1b63ed8c6399a6c2044c8d.tar.xz
vmchooser-f29300c556e541f2bf1b63ed8c6399a6c2044c8d.zip
qmake -> cmake; (mostly) cosmetic changes
Switched to cmake: CMakeLists.txt in base directory use ./build.sh to build vmchooser (or mkdir -p build; cd build cmake .. && make) updated README removed fltk/ removed libxml2/ removed mesgdisp/ renamed vmchooser/ to src/ moved all header files (.h) from vmchooser/inc/ to src/ added files to repository that must have slipped the last time
Diffstat (limited to 'fltk/fltk/RepeatButton.h')
-rw-r--r--fltk/fltk/RepeatButton.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/fltk/fltk/RepeatButton.h b/fltk/fltk/RepeatButton.h
deleted file mode 100644
index cfca27d..0000000
--- a/fltk/fltk/RepeatButton.h
+++ /dev/null
@@ -1,47 +0,0 @@
-//
-// "$Id: RepeatButton.h 4886 2006-03-30 09:55:32Z fabien $"
-//
-// This button does it's callback repeatedly (about 10/second) while
-// the user holds the button down.
-//
-// Copyright 1998-2006 by Bill Spitzak and others.
-//
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Library General Public
-// License as published by the Free Software Foundation; either
-// version 2 of the License, or (at your option) any later version.
-//
-// This library 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
-// Library General Public License for more details.
-//
-// You should have received a copy of the GNU Library General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-// USA.
-//
-// Please report all bugs and problems to "fltk-bugs@fltk.org".
-//
-
-#ifndef fltk_RepeatButton_h
-#define fltk_RepeatButton_h
-
-#include "Button.h"
-
-namespace fltk {
-
-class FL_API RepeatButton : public Button {
- static void repeat_callback(void *);
-public:
- int handle(int);
- RepeatButton(int x,int y,int w,int h,const char *l=0) : Button(x,y,w,h,l) {}
-};
-
-}
-
-#endif
-
-//
-// End of "$Id: RepeatButton.h 4886 2006-03-30 09:55:32Z fabien $".
-//