| | [ Submit Article | Link To Search Results ]
20 article(s) found, showing 1 to 10:
| | 825 | What are the Versions of FLTK? | May 29, 2008 | 0 | |
| | | There is a lot of confusion, especially for people who are new to FLTK, about the different versions that are available, what they offer, and when they will be released. This article attempts to clarify matters. | |
| | 364 | How is FLTK Licensed? | Jul 21, 2006 | 0 | |
| | | FLTK comes with complete free source code. FLTK is available
under the terms of the GNU Library General Public
License. | |
| | 378 | Why Does the Escape Key Close My Window? | Sep 08, 2005 | 0 | |
| | | 1. FLTK has a "global event handler" that makes Escape try to close
the window, the same as clicking the close box. To disable this
everywhere you can install your own that pretends it wants the escape
key and thus stops the default one from seeing... | |
| | 374 | How Can I Use Anti-Aliased Fonts?
| Jan 29, 2005 | 0 | |
| | | Configure FLTK with the --enable-xft option, e.g.:
| |
| | 375 | Directing All Input to a Window
| Jan 29, 2005 | 0 | |
| | |
FLTK supports modal windows, which force all input to the currently
visible modal window. You can make a window modal by using the
Fl_Window::set_modal()
method.
| |
| | 376 | Waiting for a Window to Close
| Jan 29, 2005 | 0 | |
| | |
The easiest way to wait for a window to close is to use the
Fl_Window::shown()
and Fl::wait() methods in a
while loop:
| |
| | 377 | Adding Global Keyboard Shortcuts
| Jan 29, 2005 | 0 | |
| | |
You can make the menubar shortcuts apply to all windows by using the
Fl_Menu_Bar::global()
method.
| |
| | 379 | How Can I Use a Class Method as a Callback?
| Jan 29, 2005 | 1 | |
| | | To get the this pointer for the class you can pass the
pointer as the user_data argument for your callback. Typically
this is then used to call a non-static method:
class MyClass {
static... | |
| | 380 | How Can I Change the Window Icon?
| Jan 29, 2005 | 0 | |
| | |
See Appendix F - Operating System
Specific Issues in the FLTK Programming Manual. Specifically, read the
sections on the Fl_Window::icon() method.
| |
| | 373 | Why Doesn't My FLTK Application Link?
| Jan 29, 2005 | 0 | |
| | |
The most common link error involves a missing select() function,
which is located in the WSOCK32.LIB or WS2_32.LIB
libraries. You'll also need to link against the FLTK library (obviously),
which is the F... | |
|
| |