Re: [fltk.general] MSVC++ 2010, compiled lib-s not working

2011-04-18 Thread Zoltán Lengyel
;%(AdditionalDependencies) Sorry for the fast post. On 18 April 2011 20:53, Zoltán Lengyel wrote: > Hi, > I have trouble getting my compiled lib-s working on MSVC++ 2010. > > Here's what I do: > - Downloaded a new release, that has an ide\VisualC2010 folder > (fltk-1.3.

[fltk.general] MSVC++ 2010, compiled lib-s not working

2011-04-18 Thread Zoltán Lengyel
Hi, I have trouble getting my compiled lib-s working on MSVC++ 2010. Here's what I do: - Downloaded a new release, that has an ide\VisualC2010 folder (fltk-1.3.x-r8570). - The whole solution builds without errors and warnings. - I make a new Win32 project, and add the following dependencies: fltk.

Re: [fltk.general] 1.1.10 Fullscreen not covering taskbar

2011-04-06 Thread Zoltán Lengyel
C2065: 'm_w' : undeclared identifier main.cpp(129) : error C2065: 'm_h' : undeclared identifier main.cpp(129) : error C3861: 'resize': identifier not found* I guess the m_'s should be inicialized in the Vollbild function, but I am not sure with what value. But wha

[fltk.general] 1.1.10 Fullscreen not covering taskbar

2011-04-05 Thread Zoltán Lengyel
Hi, I am running FLTK 1.1.10 on Windows 7. If I make a fullscreen window with this code: *#include #include int main() { Fl_Window window(300,200, "Window title"); window.fullscreen(); window.show(); return Fl::run(); }* the window looses it's header and resizes itself cor

Re: [fltk.general] Whats the name of this widget?

2010-08-28 Thread Zoltán Lengyel
Thanks Jim, this is exactly that I was looking for. On 28 August 2010 21:10, Jim Wilson wrote: > On 08/28/2010 10:42 AM, Zoltán Lengyel wrote: > > > I am looking for a widget similar [Fl_Choice]. > > Sure looks like Fl_Choice (FLTK 1.1.10) to me. > > http://fltk.or

[fltk.general] Whats the name of this widget?

2010-08-28 Thread Zoltán Lengyel
Hi, I am looking for a widget similar to the type shown by the link below. Is there a widget like this in any version of fltk, if so what is it's name? http://www.uploadhouse.com/viewfile.php?id=6097532 Thanks, katz ___ fltk mailing list fltk@easysw.com

Re: [fltk.general] Getting Fl_Color from Fl_Color_Chooser

2010-08-25 Thread Zoltán Lengyel
It works fine with the multiplying method, not sure why I had doubts about it. Anyway, thanks. On 25 August 2010 15:45, MacArthur, Ian (SELEX GALILEO, UK) < ian.macart...@selexgalileo.com> wrote: > > > what I want to do is picking up a color from an > > Fl_Color_Chooser (widget) > > then convert

[fltk.general] Getting Fl_Color from Fl_Color_Chooser

2010-08-25 Thread Zoltán Lengyel
Hi, what I want to do is picking up a color from an Fl_Color_Chooser (widget) then convert it to an Fl_Color (type) to use it in a drawing function. What I tried so far looks like this: Fl_Color_Chooser *Co; Fl_Color c = fl_rgb_color(Co->r(), Co->g(), Co->b()); This unfortunately always ends up b

Re: [fltk.general] Problem with virtual function in the callback

2010-07-22 Thread Zoltán Lengyel
It works now, many many thanks! ___ fltk mailing list fltk@easysw.com http://lists.easysw.com/mailman/listinfo/fltk

[fltk.general] Problem with virtual function in the callback

2010-07-22 Thread Zoltán Lengyel
Hi, I have an access violation problem in my project, I made a small example for demonstration: http://paste-bin.com/view/38d8960c So there's class A, subclassed from Fl_Group, it has a button, thats callback is using a virtual function, wich is implemented in class B (subclassed from class A). Th

Re: [fltk.general] Building FLTK 1.3.x on Microsoft Visual C++

2010-07-20 Thread Zoltán Lengyel
Building VisualC6 solved my problem, thanks for your help. ___ fltk mailing list fltk@easysw.com http://lists.easysw.com/mailman/listinfo/fltk

[fltk.general] Building FLTK 1.3.x on Microsoft Visual C++

2010-07-20 Thread Zoltán Lengyel
Hi, so far I've been using FLTK v1.1.10 (Windows7, Microsoft VC++ 2008 Express), but now I need Fl_Tree, so I switched to the latest release of FLTK 1.3.x (r7677). The first thing I am unsure about, is wich project should I build. ide\vc2005 is the one I found likely ( there's also ide\deprecated\v

Re: [fltk.general] Fl_Tabs deactivating widgets

2010-07-20 Thread Zoltán Lengyel
Thanks for your help, it works now! ___ fltk mailing list fltk@easysw.com http://lists.easysw.com/mailman/listinfo/fltk