Tagged Questions
FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit for UNIX®/Linux® (X11), Microsoft® Windows®, and MacOS® X.
3
votes
1answer
327 views
C++ to C Wrapper using SWIG (for FLTK)
I need to generate wrapper to FLTK C++ classes to use it in pure C.
I know, that SWIG can do that, and I know how to generate wrapper for C#, Python etc.
But I do not know how to wrap C++ to C using ...
2
votes
2answers
215 views
Stroustrup's Simple_window.h
I am trying to get the graphics examples to work from Stroustrup's Principles and Practices ...C++, to no avail (yet). I have installed the fltk stuff, and know that is working fine as I managed to ...
2
votes
1answer
70 views
How to do gui transplantation in Java?
I have a Qt(c++) and FLTK (lua) GUI running. And i have Java AWT/Swing GUI running, side by side in a Desktop.
How can i now inject the Qt/FLTK GUI window A-Z to my JAva Window or JWindow? So that ...
2
votes
1answer
184 views
FLTK in MSVC needs x11 headers?
I'm trying to learn how to use FLTK right now (In MSVC 2008). I got all the the libraries compiled correctly, but when I tried to run this program:
#include "FL/Fl.H"
#include ...
2
votes
2answers
332 views
Why can I deadlock in a single-threaded FLTK application?
I have a supposedly single-threaded FLTK application with a popup menu, created with Fluid. I have a class that sub-classes Fl_Gl_Window and implements a handle() method. The handle() method calls a ...
2
votes
2answers
350 views
What makes deployment successful for some users and unsuccessful for others?
I am trying to deploy a Visual C++ application (developed with Microsoft Visual Studio 2008) using a Setup and Deployment Project. After installation, users on some target computers get the following ...
1
vote
1answer
40 views
Can I change a FL_Window's caption other than in a constructor argument?
MainWindow::MainWindow(int w, int h, const string& c)
: Fl_Window(w, h, c.c_str()) // Don't call constructor over here
{
script.load_file(WIN_CONFIG_SCRIPT);
int width = ...
1
vote
1answer
33 views
Can anyone demonstrate fl_filename_list?
I can't figure out how to use the fl_filename_list function in the FL/filename.h module. I also cannot find any good examples or tutorial on the internet. Can anyone provide a good example?
1
vote
1answer
56 views
FLTK not working with Stroustrup headers
I'm currently learning c++ with the book Programming: Principles and Practice Using C++ from Stroustrup and am in chapter 12. I'm now trying since days to get FLTK with the specific headers working.
...
1
vote
1answer
49 views
How to use Fl::awake in the FLTK Library
I would like to use the Fl::awake(callback) function to call functions from my main loop in an FLTK program. I am calling Fl::awake from a child thread, it returns 1 (success), but my function never ...
1
vote
1answer
280 views
A simple phonebook using FLTK in c++
Hi guys I want to make a phone book in c++ using FLTK as a part of my project. It should have options to add, delete,modify and search the numbers.
Since I am new to FLTK can some one suggest which ...
1
vote
2answers
153 views
Design approach on a program with many GUI screens
I've terribly confused myself to the point of no return and feel my project is ballooning too huge to keep up with my current ways.
In a nutshell:
1) There are many graphical screens (windows), ...
1
vote
1answer
265 views
How to build FLTK to using with Netbeans (Windows)
How to build FLTK to using with Netbeans (Windows), i have tried but not success. Help me
1
vote
2answers
160 views
Why does output of fltk-config truncate arguments to gcc?
I'm trying to build an application I've downloaded which uses the SCONS "make replacement" and the Fast Light Tool Kit Gui.
The SConstruct code to detect the presence of fltk is:
guienv = ...
1
vote
4answers
87 views
Explanation for return value casting that is going on
#include <Fl/Enumerations.H>
class Color
{
public:
static Color amber () {return fl_rgb_color (255, 204, 0);}
static Color lighter_gray () {return fl_rgb_color (40, 40, 40); ...
1
vote
2answers
478 views
FLTK in Cygwin using Eclipse (Linking errors)
I have this assignment due that requires the usage of FLTK. The code is given to us and it should compile straight off of the bat, but I am having linking errors and do not know which other libraries ...
1
vote
2answers
1k views
cmath Errors when using FLTK
For some reason, whenever I add the FLTK directory to my include path, I get a bunch of errors from cmath. I am using GCC version 4.2. Here is a sample program and the build output:
main.cpp
...
1
vote
2answers
867 views
Building FLTK Project in Eclipse
I am having trouble getting set up with FLTK in Eclipse. I am trying to create an OpenGL window with the following code (which I found here):
#include <FL/Fl.H>
#include ...
0
votes
2answers
39 views
Fltk Window wait
C++ fltk: I have a window with an in_box and an out_box, how do I make it so that the user can type into the in_box hit enter, then proceed with the rest of the event. Right now the window just shows ...
0
votes
1answer
35 views
FLTK Wait for event to close window
I basically have a window with an in_box and an enter button. How can I make it so that the window stays open and drawn until the user types into the in_box and hits the enter button.
Window ...
0
votes
1answer
37 views
FLTK g++ Compile error
I have an FLTK project that I finished in visual studios and it compiles absolutely fine. But when I use g++ to compile it it gives me this error:
Undefined first referenced
...
0
votes
2answers
110 views
FLTK Closing window
I am using FLTK. I have a window with a variety of buttons the user can click to perform some action. In my int main() i have a switch statement to handle all of these. When the user clicks exit the ...
0
votes
1answer
17 views
Using qmake to generate a makefile that has FLTK fluild files?
I was wondering if anyone might have an idea how
to use qmake to generate a program that has
FLTK fluid files ?
I have foo.fl that generate fl.cxx and fl.hxx which get compiled.
I don't know how or ...
0
votes
0answers
31 views
Why is my FL_Window empty?
I created this GUI with fltk and at the time (about 3 months ago) it worked fine. Only touched it a few times since then and tried to run it today. The window pops up, but all of the widgets are ...
0
votes
2answers
248 views
Using fprintf at a C++ code
I have an odd problem. When I try to compile the code below, it works without a failure as expected:
#include <iostream>
#include <Windows.h>
int main(){
FILE *f = ...
0
votes
1answer
68 views
How to use FLTK 1.1 dll in MinGW?
I am trying to compile a project with MinGW that uses the fltk library. Whenever it gets to the file using fltk, it tells me "cannot find -lfltk".
I know it comes down to getting the .dll for the ...
0
votes
1answer
42 views
Fltk1.1 with MinGw?
I have a project that compiles in linux and I am now trying to compile it under MinGw in Windows 7. The project includes the fltk library. When I try to compile, I get the message that the FL/Fl.h ...
0
votes
0answers
45 views
FLTK2 Menu Trouble
I'm trying the FLTK2 API, and I'm having a bit of an issue with how the menus are displaying. When I click on them, they look like this:
(The cursor didn't show in the screenshot)
Here is my ...
0
votes
1answer
59 views
How to rotate Widgets in the FLUID gui editor
I'm following this tutorial (page 98) and i'm having a lot of trouble. It seems to be a bit dated or something, but what is troubling me at the moment is that it tells me to
add the following to the ...
0
votes
1answer
77 views
Drawing widgets on existing sdl_opengl context
Is there any actively developed open-source (GPL is fine) library that can draw widgets such as buttons, menus, etc on an existing SDL/OpenGL context? I have heard of FLTK, but it appears that it ...
0
votes
1answer
108 views
How to get drop-down menu in FLTK?
I am making a GUI with FLTK and I am wondering if there is a widget for something resembling a drop-down menu. I want one value to be shown, then have the user click the value (or something else ...
0
votes
1answer
95 views
How do I write an panel task bar in FLTK for use on Linux systems
I need to write a small application in C/C++ to implement a panel task bar like thing to display information along the top of a desktop window (specifically an xorg desktop on a Linux system). I need ...
0
votes
2answers
114 views
How can I compile a fltk program using g++ in Ubuntu?
How can I compile a fltk program using g++ in Ubuntu?
Straight-forward question. I've been searching for and trying many things for a couple hours now. Some of the examples I have seen require X11R6, ...
0
votes
0answers
117 views
FLTK window won't show widget?
I am trying to create a window using FLTK that just has one button to do something. Whenever I have all the code in one class (including main) and return Fl::run(), it works fine. However when I try ...
0
votes
1answer
86 views
How to compile fltk file with other files?
I have a gui window using fltk class that works fine when I compile it by itself. For doing that, I use -
fltk-config --compile guiwindow.cpp
But I really want to use this in my project. So how can ...
0
votes
2answers
109 views
C++ dynamically show or hide FLTK widgets?
I'm new to C++ and never used macros before but I beleive they may allow me to solve the following problem although I would welcome alternative solutions.
I have written the following macro:
#define ...
0
votes
1answer
196 views
Troubles with compiling with FLTK framework
I seem to have problems compiling FLTK programms using anything other than the fltk-config script.
I have copied the source from the "Hello world" program in the tutorial. When I run fltk-config ...
0
votes
1answer
189 views
Is there a multi-column listbox widget in FLTK?
I'm evaluating cross-platform GUI toolkits for C++ development. I already use Qt but in this case the LGPL is too restrictive (I need to link statically).
Now FLTK would be an excellent library for ...
0
votes
2answers
343 views
How do I link with GLU?
I've just discovered FLTK and I made a makefile for my test. Here is my makefile:
################ template makefile ##############
# We don't know what compiler to use to build fltk on this machine ...
0
votes
2answers
91 views
Need help with static / non-static members
I have a static member function that looks like this:
void whackamole_window::showmole(void *){
if (mtime == 0) {
Fl::remove_timeout(whackamole_window::showmole);
}
else {
//...
...
0
votes
2answers
640 views
How do I install FLTK for VS2010?
Hey guys, this is my first post on here so please bare with me.
I'm doing a project for school have to incorporate a form of GUI. Sadly, I have no experience with GUIs whatsoever so I just spend the ...
0
votes
3answers
82 views
passing functions
Ok, it's been a while since I wrote in C++.
and I've never done anything quiet this high level.
So basically I need to create a class.
The constructor for the class needs to take a reference (or ...