Search found 9 matches

by z.bencik
Tue Aug 31, 2010 11:48 am
Forum: The Code Dump
Topic: wxFlatMenu & wxFlatMenuBar
Replies: 117
Views: 844194

Hello Eran,
the link is OK now.

What license is used in wxFlatMenu source code? I would like to use your code in commercial project, but couldn't find any legal notices except for wxWidgets licence.

Thank you, appreciate your efforts.
by z.bencik
Mon Aug 16, 2010 7:38 am
Forum: The Code Dump
Topic: wxFlatMenu & wxFlatMenuBar
Replies: 117
Views: 844194

eranif wrote: The sources can be found here:

http://codelite.org/downloads/wxflatmenu-src.zip
Hello Eran,

The link you posted leads to Page Not Found resource.
Can you please verify if the link is valid.
Thanks.
by z.bencik
Sun Aug 15, 2010 6:35 pm
Forum: The Code Dump
Topic: wxFlatMenu & wxFlatMenuBar
Replies: 117
Views: 844194

Hello Eran, Did you have a chance to upload the sources to your site? Can you please provide the link? I can't find the sources from the links provided in this entire thread, they are all broken. Thanks. -zoltan. Thanks for reporting that the site is going down. I will upload the sources into my sit...
by z.bencik
Wed Jan 27, 2010 6:35 am
Forum: C++ Development
Topic: [MACOSX] Cocoa UI inside Carbon window
Replies: 0
Views: 1104

[MACOSX] Cocoa UI inside Carbon window

Hello, Is it possible to create wxPanel, which is created using Cocoa widgets, and place it in the wxNotebook, knowing that wxWidgets was built using Carbon API? The UI elements I'm trying to use in wx under MacOSX are built under Cocoa API. So, I was wondering if it's doable to embed this elements ...
by z.bencik
Tue Jan 26, 2010 4:26 pm
Forum: C++ Development
Topic: [wxOSX_Cocoa] Dynamic resize of wxAuiToolBar controls
Replies: 4
Views: 4379

I've tweaked auibar.cpp to the following: void wxAuiToolBar::AddControl(wxControl* control, const wxString& label, int proportion /* = 0*/) { wxAuiToolBarItem item; item.window = (wxWindow*)control; item.label = label; item.bitmap = wxNullBitmap; item.disabled_bitmap = wxNullBitmap; item.active ...
by z.bencik
Tue Jan 26, 2010 12:20 pm
Forum: C++ Development
Topic: [wxOSX_Cocoa] Dynamic resize of wxAuiToolBar controls
Replies: 4
Views: 4379

Yes I do. It doesn't help.
by z.bencik
Tue Jan 26, 2010 8:14 am
Forum: C++ Development
Topic: [wxOSX_Cocoa] Dynamic resize of wxAuiToolBar controls
Replies: 4
Views: 4379

[wxOSX_Cocoa] Dynamic resize of wxAuiToolBar controls

Hello, Can anybody instruct me how to dynamically resize controls within wxAuiToolBar? So far, I've tried to catch OnSize event in the main frame, and set the size of the text control accordingly. But, text control doesn't get resized. wxAuiManager::Update or any other refresh methods do not help. U...
by z.bencik
Sat Jan 23, 2010 10:50 am
Forum: C++ Development
Topic: [wxCocoa] Problems with wxOwnerDrawnComboBox
Replies: 0
Views: 1177

[wxCocoa] Problems with wxOwnerDrawnComboBox

Hello, Flags used to compile wxWidgets 2.9.0 on MacOS X 10.5.4: --enable-debug --enable-unicode --with-osx_cocoa --enable-monolithic --enable-debug-gdb There is a problem when you click on combobox button, the drop down list appears and if you start typing any keys application simply hangs. I did so...
by z.bencik
Fri Dec 18, 2009 3:30 pm
Forum: C++ Development
Topic: wxTextFile multiple access
Replies: 2
Views: 3083

wxTextFile multiple access

Hello, I'm trying to access single text file from several threads under Linux platform. I'm intended to use this file only in read-only mode, but some of the worker threads fail to open this file with error message: Error: can't read from file descriptor 85 (error 9: Bad file descriptor) Can anybody...