Search found 14 matches

by dzd
Thu Aug 25, 2005 2:40 pm
Forum: C++ Development
Topic: wxMenu event
Replies: 3
Views: 1056

Actually what I was looking for was the event thrown when the user clic on a menu title : in the case of the menu sample it's not 'about' but 'help'.

But it certainly doesn't exist, I'll find an other way to do what I wanna do.

Thank for your fast answer.
by dzd
Thu Aug 25, 2005 2:11 pm
Forum: C++ Development
Topic: wxMenu event
Replies: 3
Views: 1056

wxMenu event

Hello !

I wondering if an event is thrown when the user clic on a menu title (File , Edit, etc.) in the menu bar ?

Cheers.
by dzd
Thu Aug 18, 2005 9:55 am
Forum: C++ Development
Topic: wxWizard OnNExt ?
Replies: 3
Views: 1112

There's no way to know if the previous or next button has been clicked ?
by dzd
Thu Aug 18, 2005 9:21 am
Forum: C++ Development
Topic: wxWizard OnNExt ?
Replies: 3
Views: 1112

wxWizard OnNExt ?

Hi there !

I'm currently using a wxWizard and I'm looking for the event thrown when I clic on next page button.
I've only found : EVT_WIZARD_PAGE_CHANGING(id, func) .
If you know something else.

Cheers.
by dzd
Tue Jul 26, 2005 9:07 am
Forum: C++ Development
Topic: Wizard and focus
Replies: 1
Views: 778

Wizard and focus

Hi !

In my program I use a wxWizard and I wish during the execution to have access to the frame behind (I mean to have access to the control with the mouse) but it's no allowed by the wizard.
I've tried to set the focus on the aimed frame but without sucess...

Cheers.
by dzd
Mon May 16, 2005 6:15 pm
Forum: General Development
Topic: sending event
Replies: 2
Views: 1201

ok :)
I've not enought search...
thanks a lot !!
by dzd
Mon May 16, 2005 1:41 pm
Forum: General Development
Topic: sending event
Replies: 2
Views: 1201

sending event

Hi all !

How can I send events "manually" in my wxWidget application ?

Thanks !
by dzd
Thu May 05, 2005 10:57 am
Forum: General Development
Topic: Tree item editing issue
Replies: 2
Views: 1080

Ok it works :)
Thanks a lot !
by dzd
Thu May 05, 2005 10:17 am
Forum: General Development
Topic: Tree item editing issue
Replies: 2
Views: 1080

Tree item editing issue

Hi !

I ve a problem when I catch the event EVT_TREE_END_LABEL_EDIT of my tree control.
I don't know how to get the new item text.

GetItemText(id) returns me the item text before editing, how to get the new ?

Thanks !
by dzd
Wed May 04, 2005 3:32 pm
Forum: General Development
Topic: wxTreeEvent
Replies: 1
Views: 843

Apparently there is a mistake in my doc:
wxTreeItemId GetOldItem() const

Returns the old item index (valid for EVT_TREE_ITEM_CHANGING and CHANGED events)
I'll try to work with EVT_TREE_ITEM_SEL_CHANGED.

Regards.
by dzd
Wed May 04, 2005 3:15 pm
Forum: General Development
Topic: wxTreeEvent
Replies: 1
Views: 843

wxTreeEvent

Hi there! I've a problem with my TreeCtrl event table, I wanna intercept the event produce when an item is modified (after EndEditingLabel), I've seen in the doc that EVT_TREE_ITEM_CHANGED exist but it makes an "identifier not found" error... Is there an other way to manage this kind of ev...
by dzd
Fri Apr 29, 2005 10:59 am
Forum: General Development
Topic: event handler
Replies: 1
Views: 921

event handler

Hi!

I've got a wxCtrlTree (which has his own event table) and I've add a PopupMenu.
Is it the better way to push a new eventhandler to catch popup menu events ?

Thanks.
by dzd
Mon Apr 25, 2005 10:04 am
Forum: General Development
Topic: child frame
Replies: 2
Views: 1114

child frame

hi

maybe it is a sputid question,
but I've not find how to create child frame inside the main frame area...

Thanks.
by dzd
Wed Apr 20, 2005 1:45 pm
Forum: Compiler / Linking / IDE Related
Topic: warnings ?
Replies: 0
Views: 830

warnings ?

Hi ! I've lot of warning when I build my wxWindows project, they are due to this call in liste.h: ConcatSelf((int)s.Len(), s); I've made a cast to integer but I don't thinks that the correct solution, maybe I havent got the good version ? (s.Len() returns an size_t which is an unsigned int I think) ...