Articles

   
  FLTK Apps      FLTK Library      Forums      Links     Login 
 Home  |  Articles & FAQs  |  Bugs & Features  |  Documentation  |  Download  |  Screenshots  ]
 

Submit Article | Link To Search Results ]

Search: 
Which Articles:  Articles/Page: 
Search supports 'and', 'or', 'not', and parenthesis. More info...


20 article(s) found, showing 1 to 10:

Next 10 ]

IDTitleLast ModifiedComment(s)
 825What are the Versions of FLTK?May 29, 20080 
 

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.

 
 364How is FLTK Licensed?Jul 21, 20060 
 

FLTK comes with complete free source code.  FLTK is available under the terms of the GNU Library General Public License.

 
 378Why Does the Escape Key Close My Window?Sep 08, 20050 
 

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...

 
 374How Can I Use Anti-Aliased Fonts? Jan 29, 20050 
 

Configure FLTK with the --enable-xft option, e.g.:

 
 375Directing All Input to a Window Jan 29, 20050 
 

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.

 
 376Waiting for a Window to Close Jan 29, 20050 
 

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:

 
 377Adding Global Keyboard Shortcuts Jan 29, 20050 
 

You can make the menubar shortcuts apply to all windows by using the Fl_Menu_Bar::global() method.

 
 379How Can I Use a Class Method as a Callback? Jan 29, 20051 
 

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...
 
 380How Can I Change the Window Icon? Jan 29, 20050 
 

See Appendix F - Operating System Specific Issues in the FLTK Programming Manual. Specifically, read the sections on the Fl_Window::icon() method.

 
 373Why Doesn't My FLTK Application Link? Jan 29, 20050 
 

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...

 
 
Next 10 ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2008 by Bill Spitzak and others. This project is hosted by Easy Software Products. Please report site problems to 'webmaster@easysw.com'.