Search found 13 matches

by triangulum
Sun Aug 10, 2008 11:14 pm
Forum: wxDev-C++
Topic: wxAUI: docking/undocking ("tearing off") Notebook
Replies: 4
Views: 1763

wxAUI: docking/undocking ("tearing off") Notebook

Hi, the question in brief: - is it possible using wxAUI components to implement a dock/undock mechanism for tab sheets of a wxNotebook-type control? That is, the user should be able to drag tab sheets out of the Notebook where they become frames/windows for themselves, as well as drag them back into...
by triangulum
Sun Jul 06, 2008 10:07 pm
Forum: wxDev-C++
Topic: Editable wxComboBox: not editable after re-gaining focus ...
Replies: 0
Views: 561

Editable wxComboBox: not editable after re-gaining focus ...

Hello, the prob in short: I am using an editable wxComboBox created by = new wxComboBox(wxGroupBoxRS232Vector.back(), baseComboBoxRS232ID + cntComboBoxRS232ID, wxT(""), wxPoint(80,46), wxSize(150,21), arrayStringFor_WxComboBoxNext, wxCB_DROPDOWN, wxDefaultValidator, wxT("WxComboBoxNex...
by triangulum
Mon Mar 24, 2008 7:04 pm
Forum: wxDev-C++
Topic: Jumping using Tab key across different group boxes
Replies: 2
Views: 2564

Jumping using Tab key across different group boxes

HI all,

the GUI has several group boxes, and different controls within these.

Switching between controls via Tab key is no problem within any GroupBox.

However, it is desired that after the last GUI in one group box, the first in the next[/b] GroupBox shall gain focus.

Any ideas?
by triangulum
Mon Mar 24, 2008 1:43 pm
Forum: wxDev-C++
Topic: wxTextCtrl: block a subset of possible chars to be entered
Replies: 1
Views: 767

Solved it using wxTextCtrl's "Remove" method for invalid entries
by triangulum
Mon Mar 24, 2008 11:18 am
Forum: wxDev-C++
Topic: wxTextCtrl: block a subset of possible chars to be entered
Replies: 1
Views: 767

wxTextCtrl: block a subset of possible chars to be entered

Hi all, like said in my previous post, I have some edit fields used for hex representation. That is, these edit fields shall contain hex digits only (0...9, a..f, A...F). I already have a function that returns true for a hex digit and false otherwise. But I wish to directly block non-hex digits from...
by triangulum
Sat Mar 22, 2008 10:21 pm
Forum: wxDev-C++
Topic: Where is any "HasFocus" method? (wxTextCtrl)
Replies: 1
Views: 1294

Where is any "HasFocus" method? (wxTextCtrl)

Hi all, my application has 2 edit boxes, always representing the SAME basic value, the one as "normal" string, and once as string of corresponding hex numbers. Example: Upper edit box content: 66697368 Lower edit box content: fish Each time the user enters a key in either of the boxes, it ...
by triangulum
Sun Mar 02, 2008 7:07 pm
Forum: wxDev-C++
Topic: Hitting Tab key shall switch between GUI controls
Replies: 1
Views: 733

Hitting Tab key shall switch between GUI controls

Hi, simple question... ... the user of my application shall be able to jump from control to control via the Tab key. I.e. current GUI control shall lose focus and the next should get it. GUI controls are of different type (edit fields, check boxes, list boxes...) How to implement this best? A first ...
by triangulum
Fri Feb 22, 2008 9:08 pm
Forum: wxDev-C++
Topic: Event handlers: fire an event when wxTextCtrl loses focus
Replies: 1
Views: 842

Event handlers: fire an event when wxTextCtrl loses focus

Hi, I have an application consisting among others of several wxTextCtrl edit fields. Whenever a user "leaves" an edit field (i.e. clicks another component), a function shall be called for checking the user input content. Below is what I wrote. It does not work (event is not fired when wxTe...
by triangulum
Sun Jul 01, 2007 6:04 pm
Forum: C++ Development
Topic: adding an event for wxWidgets button: "invalid static c
Replies: 1
Views: 748

adding an event for wxWidgets button: "invalid static c

Hi all, I added a button. Then, within the Property Inspector of wxDevC++, I added an OnClick event. The IDE completed the EVENT_TABLE as follows, EVT_BUTTON(ID_WXBUTTONLOADCUSTOMSTATICCONF,MCGUIFrm::WxButtonLoadCustomStaticConfClick) and I declared the event function as follows, void MCGUIFrm::WxBu...
by triangulum
Sat Jun 30, 2007 9:44 pm
Forum: wxDev-C++
Topic: Property Inspector oddities in wxDevC++
Replies: 1
Views: 1904

Property Inspector oddities in wxDevC++

Hi all, following annoying things occur within the Property Inspector: 1 - no properties shown at all after clicking on a control element in the .wxform. Just a gray field. Controls have underlying BoxSizers. Could this have something to do with this? 2 - when properties were shown, changing of e.g....
by triangulum
Fri Jun 08, 2007 10:01 pm
Forum: wxDev-C++
Topic: How to create executable ?
Replies: 3
Views: 1770

1) Have you checked out your project folder for a new exe?
Yes I have, and I did not discover it. Then I looked in the "output" folder and - how miraculous - there it is 8)
by triangulum
Fri Jun 08, 2007 7:50 pm
Forum: wxDev-C++
Topic: How to create executable ?
Replies: 3
Views: 1770

How to create executable ?

Hi all, now I have installed wxDevC++ and my first simple test app (empty window) could be compiled and started successfully from the IDE. Two simple (?) questions, 1 - how to create an executable (.exe) ? It seems it is not done automatically. 2 - if wishing to create an executable (binary) under e...
by triangulum
Mon Jun 04, 2007 11:33 am
Forum: wxDev-C++
Topic: Dev-C++ compiler error message: "-lwxmswd not found&quo
Replies: 1
Views: 806

Dev-C++ compiler error message: "-lwxmswd not found&quo

Hello all, I have installed wxWidgets and set it up manually for Bloodshed Dev-C++ just as described here: http://www.wxwidgets.org/docs/tutorials/devcpp.htm Now I want to launch my very first GUI using Widgets just like decribed at the above site ("Creating a project in Dev-C++"). Unfortu...