Search found 73 matches

by jazz
Mon Jul 18, 2005 5:07 am
Forum: Compiler / Linking / IDE Related
Topic: Linking errors - I'm frustrated !!!
Replies: 13
Views: 3650

In kdevelop. Click Project/New Project and choose "C++/wxWidgets/Sample Hello World wxWidgets App" ????

if you can compile the samples, it should be that easy. if it's not, then purhaps you are asking the wrong question.
by jazz
Fri Jul 15, 2005 1:51 am
Forum: wxDev-C++
Topic: Gauge doesn't update...
Replies: 17
Views: 5043

I've just found this thread cause i'm having a similar problem with wxGauge. Here's my code: gTest = new wxGauge(this, ID_TEST, 100, wxPoint(200,100), wxDefaultSize); gTest->SetRange(100); gTest->SetValue(0); void IncomePanel::Button_Click(wxCommandEvent &event) { long waarde = 0; waarde = wxGet...
by jazz
Wed Jun 29, 2005 12:44 am
Forum: C++ Development
Topic: Capturing wxEVT_LEFT_UP
Replies: 0
Views: 486

Capturing wxEVT_LEFT_UP

I hope this is an easy one cause it's driving me nuts. Basically, I've wrapped up wxStaticBitmap in a class so that I can capture wxEVT_LEFT_UP events. This works. However, if I create a control OVER another control, the one created first (ie: the one on the bottom) get's the event, not the one on t...
by jazz
Tue Jun 28, 2005 5:06 am
Forum: C++ Development
Topic: wxStaticBitmap and Event weirdness
Replies: 1
Views: 766

Ok.. I've come up with a good solution to this using the "Ownerdrawn Buttons" thread, elsewhere on this forum, which gave me the idea to store an index in the object instance to identify the button. But i still have one other problem. :( I put these 'Menu Buttons' on a panel by themselves ...
by jazz
Tue Jun 28, 2005 12:47 am
Forum: C++ Development
Topic: wxStaticBitmap and Event weirdness
Replies: 1
Views: 766

wxStaticBitmap and Event weirdness

Ok, for starters, i don't know if i'm doing this the correct way, but it seems to work how I want apart from giving me back the wrong object ID. What've done is wrapped up wxStaticBitmap in a class so I can capture events, namely, when someone clicks on an image. Now it loads and displays the images...
by jazz
Thu Jun 23, 2005 4:23 am
Forum: C++ Development
Topic: Annoying "non-POD type" compile error.
Replies: 12
Views: 2317

I managed to answer my own question, hehe. Still getting use to this OOP stuff. :oops: This works perfectly: void MainFrame::butTest_Click(wxCommandEvent &event) { wxString tStr; wxDateTime tDate; tDate = gMyCal->GetDate(); tStr.Printf("Date Selected: %s", tDate.FormatDate().c_str()); ...
by jazz
Thu Jun 23, 2005 2:46 am
Forum: C++ Development
Topic: Annoying "non-POD type" compile error.
Replies: 12
Views: 2317

Annoying "non-POD type" compile error.

I know this is coding error on my part which is why i've posted this here and hopefully it is a simple question for someone. I keep getting the following error: /home/jamiecarl/projects/lifeplanner/src/mainFrm.cpp:135: warning: cannot pass objects of non-POD type `class wxString' through `...'; call...
by jazz
Wed Jun 15, 2005 10:55 pm
Forum: Compiler / Linking / IDE Related
Topic: GUI Design tips for Linux!?
Replies: 7
Views: 2127

Re: GUI Design tips for Linux!?

Like wxHatch ? Cool. That's what I was after. I'll check it out. :) Actually that's why I started work on wxRapid, my GUI designer (work in progress). I've had a look at that. I'm just being patient and waiting for the Linux version. ;) Although I should give it a shot on a windows box soon.
by jazz
Wed Jun 15, 2005 7:30 am
Forum: Compiler / Linking / IDE Related
Topic: GUI Design tips for Linux!?
Replies: 7
Views: 2127

Re: GUI Design tips for Linux!?

Do most people use a GUI designer like wxDesigner or Dialogblocks? (...) i'm allergic to commercial software and the two major designers for linux are commercial (which for a GPL OS seems stoopid That's of course your freedom to think that way but I would call it far more 'stoopid' to name this com...
by jazz
Wed Jun 15, 2005 7:02 am
Forum: Compiler / Linking / IDE Related
Topic: GUI Design tips for Linux!?
Replies: 7
Views: 2127

Re: GUI Design tips for Linux!?

Of course, everyone has their preference and there really is no right answer I believe... Yeah, being new to wxWidgets, i'm really just interested in how others are designing their interfaces. Coming from a VB background (please don't hate me, i've ditched it for C++ :oops:) i'm still kinda used to...
by jazz
Wed Jun 15, 2005 6:44 am
Forum: Compiler / Linking / IDE Related
Topic: GUI Design tips for Linux!?
Replies: 7
Views: 2127

GUI Design tips for Linux!?

I'm just wondering how people design their interfaces. Do most people use a GUI designer like wxDesigner or Dialogblocks? Or do people code it all by hand? I've been playing around with both. I kinda like the idea of using a wysiwyg designer that generates C++ code for me but i'm allergic to commerc...
by jazz
Thu Jun 09, 2005 12:58 am
Forum: Announcements and Discoveries
Topic: wxRapid - A GUI editor
Replies: 43
Views: 13780

Screenshots look fantasic. Can't wait for the Linux version (or source) to become available. ;) *hint*hint*

:D
by jazz
Thu Jun 09, 2005 12:45 am
Forum: Compiler / Linking / IDE Related
Topic: Cross-compile woes: Compile on Linux for Windows or Linux
Replies: 5
Views: 1734

Cross-compile woes: Compile on Linux for Windows or Linux

Hey all, I'm trying to find out how it's possible to compile for both Linux and Windows on my Linux workstation. I have successfully compiled for Linux, but then when i setup the system to compile for Windows using MingW32 I can compile for windows, but not for linux. Is it possible to setup wxWindo...