Search found 543 matches

by MoonKid
Sun Jun 26, 2016 12:16 pm
Forum: General Development
Topic: no triage of bug-reports
Replies: 4
Views: 1831

no triage of bug-reports

I want to aks if there is a triage system (a person in charge?) for the bug-tracker?

I have some reports open for years without any reaction. I don't talk about fixing a bug or something like that. Just a reaction - a triage.
by MoonKid
Sun Nov 01, 2015 9:14 pm
Forum: Compiler / Linking / IDE Related
Topic: How to build a simple wx-application with gcc on Ubuntu?
Replies: 1
Views: 1014

How to build a simple wx-application with gcc on Ubuntu?

I used wxWidgets years ago on a Windows system with MSVC and CodeBlocks as IDE. Currently I am indirect using wxWidgets with its Python binding wxPhoenix (the dev-version wxPython) on Ubuntu 14.04.03. To analyse a maybe-bug I need to build a simple wx-app in C++ on my system. I don't want to setup a...
by MoonKid
Sun Nov 01, 2015 8:59 pm
Forum: C++ Development
Topic: ask wxWidgets for its GTK-version and other build-options
Replies: 1
Views: 964

ask wxWidgets for its GTK-version and other build-options

Is there a way to ask the wxWidgets (e.g. for the about-dialog of my wxWidgets-using application) which version of Gtk and/or other components it is using?
by MoonKid
Sun Apr 26, 2015 3:52 pm
Forum: C++ Development
Topic: resizing the width of a SpinCtrl the elegant way
Replies: 2
Views: 1779

Re: resizing the width of a SpinCtrl the elegant way

Ah nice. This works nearly perfect. Currently I have not C++ environment to test it with the original wxWidgets. But with wxPyhton (on KDE 4 with Kubuntu 14.04.2) the computed with needs only 1 pixel more. ;) size = spinCtrl.GetSizeFromTextSize(spinCtrl.GetTextExtent('00')) spinCtrl.SetMinSize(size)...
by MoonKid
Sat Apr 25, 2015 2:40 pm
Forum: C++ Development
Topic: SpinCtrl with empty value?
Replies: 2
Views: 1282

Re: SpinCtrl with empty value?

This isn't full implemented in wxPython/wxPhoenix.

And it is a workaround.

An empty value is NULL/None/the-definied-nothing.
'0' or 0 is a value.

This is a big difference and I want my gui to display that.
by MoonKid
Sat Apr 25, 2015 2:21 pm
Forum: C++ Development
Topic: resizing the width of a SpinCtrl the elegant way
Replies: 2
Views: 1779

resizing the width of a SpinCtrl the elegant way

I want to have SpinCtrl that just use nothing more then the width needed for (e.g.) 2 digits. I know I can set SetMinSize() and use GetTextExtend("00") to compute the needed size of a string. But the SpinButtons have a width, too. As a workaround I could create one time a spinbutton store ...
by MoonKid
Sat Apr 25, 2015 2:02 pm
Forum: C++ Development
Topic: SpinCtrl with empty value?
Replies: 2
Views: 1282

SpinCtrl with empty value?

Does the SpinCtrl allow and empty value? I mean the text field is empty.
by MoonKid
Fri Apr 03, 2015 2:03 pm
Forum: Component Writing
Topic: wxControl, wxPanel, wxFrame or wxWindow?
Replies: 1
Views: 4623

wxControl, wxPanel, wxFrame or wxWindow?

When I create my own control (e.g. for entering data) I derived it from wxControl. I do it just because of the matching words "control". ;) In the past (with wxWidgets 2.4. and C++) I sometimes used a wxPanel for that - don't know why. Thinking about it bring me to the point, that I don't ...
by MoonKid
Fri Mar 04, 2011 10:41 am
Forum: C++ Development
Topic: ungraceful worker thread termination
Replies: 8
Views: 3145

PB wrote:Inspecting the ERR value after the PostQueuedCompletionStatus() call in wxIOCPService::PostEmptyStatus() in include/wx/msw/private/fswatcher.h might also help.
This is '1'.
by MoonKid
Fri Mar 04, 2011 10:26 am
Forum: C++ Development
Topic: ungraceful worker thread termination
Replies: 8
Views: 3145

The trace output
(fswatcher) Posting empty status!
Der Thread 'Win32 Thread' (0xd1c) hat mit Code 0 (0x0) geendet.
(fswatcher) Deleting entry 'C:\Users\user\AppData\Roaming\wxCron'
The sample exit without any problems.
by MoonKid
Fri Mar 04, 2011 9:01 am
Forum: C++ Development
Topic: ungraceful worker thread termination
Replies: 8
Views: 3145

Yes I am using wxFileSystemWatcher class. And I do a delete on it in the dtor of my application class. If you do, try checking the debug output with wxTRACE_FSWATCHER on. What do you exactly mean with this? I found wxTRACE_FSWATCHER in the source. #define wxTRACE_FSWATCHER "fswatcher" How ...
by MoonKid
Fri Mar 04, 2011 2:00 am
Forum: C++ Development
Topic: ungraceful worker thread termination
Replies: 8
Views: 3145

ungraceful worker thread termination

When I exit my application I get two error messages that I don't know how to interpret. Error: Can not wait for thread termination. Error: Ungraceful worker thread termination. I don't use wxThread or something like that. I'm using some wxTimer derived objects. I take care that they are stoped and d...
by MoonKid
Fri Mar 04, 2011 1:48 am
Forum: C++ Development
Topic: [wxMenu] delete manualy popup menu?
Replies: 1
Views: 1081

[wxMenu] delete manualy popup menu?

If I understand this right http://docs.wxwidgets.org/trunk/classwx_menu.html I have to destroy wxMenu objects on the heap by myself when I use them with wxWindow::PopupMenu(). Right? If I don't do this I see the dump-object while debuging. But If I do a 'delete pMenu_' I recieve an error while debug...
by MoonKid
Thu Mar 03, 2011 11:16 pm
Forum: Platform Related Issues
Topic: [Win] autostart and working directory
Replies: 1
Views: 1309

[Win] autostart and working directory

My application is start with windows-autorun (reg-key RUN).

The full path is
C:\Program Files\wxCron\wxCron.exe

My problem is that the working directory (::wxGetCwd()) is C:\Windows\system32.

How can I solve this problem?
by MoonKid
Sun Feb 27, 2011 12:54 pm
Forum: C++ Development
Topic: Problem with wxFileSystemWatcher: Does not recognize modif.
Replies: 14
Views: 4866

Is it correct if I say that under MSW (Win7) it is only possible to watch directories NOT files explicite? Because lines like this Add( wxFileName("D:\\test.txt"), wxFSW_EVENT_ALL); cause in this error Unable to set up watch for "D:\test.txt". Error 0: Der Vorgang wurde beendet. ...