Search found 42 matches

by tuli
Mon Jun 18, 2012 1:53 pm
Forum: C++ Development
Topic: wxRibbonButtonBar "disabled" still processes event
Replies: 13
Views: 3913

Re: wxRibbonButtonBar "disabled" still processes event

if the patch has been tested, can we submit it to track?
by tuli
Sat Jun 09, 2012 5:00 pm
Forum: C++ Development
Topic: restoring scrolled state
Replies: 3
Views: 1442

Re: restoring scrolled state

Image
by tuli
Sat Jun 09, 2012 7:51 am
Forum: General Development
Topic: wxTool
Replies: 4
Views: 2225

Re: wxTool

This forum is mainly for general development questions or other programming questions not directly related to wxWidgets development. An example of which might be "How do I determine the encoding of a text file?" or "I have a question about the wx license". ... you should post th...
by tuli
Wed Jun 06, 2012 12:43 pm
Forum: C++ Development
Topic: Notebook Tab
Replies: 3
Views: 1672

Re: Notebook Tab

you mean, via the tab key...?
by tuli
Sat Jun 02, 2012 4:00 pm
Forum: C++ Development
Topic: enable menu
Replies: 3
Views: 1683

Re: enable menu

also see

http://wyoguide.sourceforge.net/guidelines/menus.html

is there any advantage to use wxID_SAVE over some random custom ID?
by tuli
Thu May 31, 2012 3:54 am
Forum: C++ Development
Topic: How to draw a ring (annulus) in wxWidgets
Replies: 3
Views: 1951

Re: How to draw a ring (annulus) in wxWidgets

PS: what I can think is draw two circles(arcs or elliptic arcs), and the inner one is filled with the background color.
probably the easiest way, yes.
by tuli
Mon May 28, 2012 9:07 pm
Forum: C++ Development
Topic: wxAuiNotebook with floatable panels
Replies: 4
Views: 1779

Re: wxAuiNotebook with floatable panels

maybe you can conduct further testing + report results on the mailing list. :)
by tuli
Mon May 28, 2012 4:45 pm
Forum: C++ Development
Topic: wxAuiNotebook with floatable panels
Replies: 4
Views: 1779

Re: wxAuiNotebook with floatable panels

indeed not possible atm.

i tried that patch - damn, it`s perfect! Full implementation, no dirty hacks.
I vouch for a merge asap!
by tuli
Sat May 26, 2012 12:52 pm
Forum: The Code Dump
Topic: wxString Levensthein distance
Replies: 3
Views: 4978

Re: wxString Levensthein distance

yeah, but they dont want it there. I have to agree - it`s something you wont use in your average project, or during everyday string-based work. I also would start looking exactly here: wx/algorithm/levenstein.h, as proposed. and: in the library as an algorithm is in any case better than not in the l...
by tuli
Sat May 26, 2012 8:23 am
Forum: The Code Dump
Topic: wxString Levensthein distance
Replies: 3
Views: 4978

Re: wxString Levensthein distance

that`d be very nice to have, imo.
maybe consider this:
Perhaps we could add it as an inline global function in its own header (wx/algorithm/levenstein.h?) but I'd really like to avoid adding more methods to wxString itself.
i`d love to see this...thanks for your work!
by tuli
Mon May 07, 2012 1:47 pm
Forum: C++ Development
Topic: making a program scriptable
Replies: 1
Views: 997

making a program scriptable

Hi, I have a program (using the wxw 293 framework), which is extendable by plugins written by users. This works very well. However, it has been requested to make the program scriptable. I would therefore need scripts to 1) be able to call the plugin api (exported functions by the main .exe) ( 2) be ...
by tuli
Mon Apr 02, 2012 4:41 pm
Forum: General Development
Topic: scrollbar-draggin under wxwidgets
Replies: 5
Views: 2613

Re: scrollbar-draggin under wxwidgets

indeed.

now that you mention it, most applications do.
Looks like i have too many Qt apps on my pc.... :roll:

wired, i think the qt way makes much more sense...

edit:
eg Firefox and the scrollbars in this very website do it "properly", too.
by tuli
Mon Apr 02, 2012 4:23 pm
Forum: General Development
Topic: scrollbar-draggin under wxwidgets
Replies: 5
Views: 2613

Re: scrollbar-draggin under wxwidgets

sure :)

edit:
ok, you have to look closely to see it in this picture. It`s much more impressive when you see it live. :wink:
by tuli
Mon Apr 02, 2012 4:12 pm
Forum: General Development
Topic: scrollbar-draggin under wxwidgets
Replies: 5
Views: 2613

scrollbar-draggin under wxwidgets

hi, i noticed that in all wxwidgets windows the scrollbar is only drawn in the being-dragged state on the first mouse-move event. It should be done right when the user first clicks on the scrollbar, imo? At least this is how all other frameworks and windows itself do it. tested with wxw 292 & 29...