Search found 610 matches

by eranif
Wed May 07, 2014 4:56 am
Forum: C++ Development
Topic: What is this? Can I remove it at the AuiNotebook?
Replies: 2
Views: 2906

Re: What is this? Can I remove it at the AuiNotebook?

This is an indicator that the focus is set on the tab label
This is why you won't get mouse event in your panel, because he does not has the focus.

Removing this won't help, you need to make sure that the focus is set at your panel to get the mouse events

Eran
by eranif
Tue Apr 22, 2014 1:45 pm
Forum: Platform Related Issues
Topic: No menu bar
Replies: 3
Views: 2731

Re: No menu bar

DavidHart wrote:For reasons best known to ubuntu, the menubar entries for the active program are supposed to appear at the top of the screen
This is the Mac way, they simply copied it from Apple

Eran
by eranif
Mon Apr 21, 2014 8:49 am
Forum: Platform Related Issues
Topic: What debugger do you use under OS X ?
Replies: 9
Views: 5881

Re: What debugger do you use under OS X ?

Hi eranon,
I just uploaded the initial plugin for testers.
See here:

http://forums.codelite.org/viewtopic.ph ... 469#p11469

Eran
by eranif
Sat Apr 19, 2014 10:31 am
Forum: Platform Related Issues
Topic: What debugger do you use under OS X ?
Replies: 9
Views: 5881

Re: What debugger do you use under OS X ?

And nice to know you thought CodeLite to be able to act as lldb front-end w/o project migration : nice Yes, this feature is implemented since we first integrated gdb into codelite, so continuing this direction with lldb only seems naturally I will try to find some time to package codelite on OSX th...
by eranif
Fri Apr 18, 2014 12:44 pm
Forum: Platform Related Issues
Topic: What debugger do you use under OS X ?
Replies: 9
Views: 5881

Re: What debugger do you use under OS X ?

EDIT2 : forgotten : and good luck for your LLDB interfacing in CodeLite, Eranif Thanks The plugin is ready for testing on OSX/Linux. If you want a bundle of codelite with the plugin included drop me a message. Here is a screenshot on it looks while debugging a small wxWidgets application on OSX htt...
by eranif
Mon Mar 24, 2014 1:23 pm
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 3.0.0 Compile Errors on CodeLite 5.4 (GCC 4.8.1)
Replies: 7
Views: 9741

Re: wxWidgets 3.0.0 Compile Errors on CodeLite 5.4 (GCC 4.8.

It seems as if wx-config is not in your path. (which is installed by codelite under the same installation path where codelite is installed) Did you change any of the environment variables? Usually this is done from Settings -> environment variables Can you please paste the content of the environment...
by eranif
Wed Mar 19, 2014 12:11 pm
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 3.0.0 Compile Errors on CodeLite 5.4 (GCC 4.8.1)
Replies: 7
Views: 9741

Re: wxWidgets 3.0.0 Compile Errors on CodeLite 5.4 (GCC 4.8.

Start by this: - Uninstall CodeLite - Manually delete the folder %APPDATA%\CodeLite - Also recommended to delete the installation folder of CodeLite (usually it is under C:\Program Files (x86)\CodeLite) Now, the best way to start with CodeLite and wxWidgets is to download all the binaries from CodeL...
by eranif
Wed Mar 12, 2014 12:08 pm
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 3.0.0 Compile Errors on CodeLite 5.4 (GCC 4.8.1)
Replies: 7
Views: 9741

Re: wxWidgets 3.0.0 Compile Errors on CodeLite 5.4 (GCC 4.8.

How did you build your wxWidgets?
Is it a pre-compiled package? if so, where did you get it from?

Eran
by eranif
Thu Feb 06, 2014 9:12 am
Forum: Platform Related Issues
Topic: What debugger do you use under OS X ?
Replies: 9
Views: 5881

Re: What debugger do you use under OS X ?

Your best bet is gdb 6.3.5 (which is apple build) Other than that, lldb (which is the clang based debugger) is the next generation debugger for OSX Note that I am using gdb 6.3.5 on OSX, until the lldb interface for codelite will be ready :P GDB 6.3.5 works without a problem inside CodeLite IDE, how...
by eranif
Wed Jan 15, 2014 9:15 am
Forum: Compiler / Linking / IDE Related
Topic: compiler errors when using Xcode to compile for iOS device
Replies: 1
Views: 1381

Re: compiler errors when using Xcode to compile for iOS devi

I suggest that you post iOS questions on the wx-dev mailing list, or at least on the wx-users mailing list.
Where you will get an answer for this

Eran
by eranif
Wed Jan 15, 2014 6:01 am
Forum: C++ Development
Topic: add button into listbox
Replies: 6
Views: 4454

Re: add button into listbox

Have a look at the dataview example in wxWidgets source tree.
Specifically, you should have a look at this class:

http://docs.wxwidgets.org/stable/classw ... derer.html

Eran
by eranif
Tue Jan 14, 2014 2:49 pm
Forum: C++ Development
Topic: add button into listbox
Replies: 6
Views: 4454

Re: add button into listbox

You should implement this using wxDataViewCtrl with some custom rendering

Eran
by eranif
Tue Jan 14, 2014 10:11 am
Forum: Announcements and Discoveries
Topic: [ANN] CodeLite IDE 5.4 / wxCrafter 1.4 have been released!
Replies: 0
Views: 2020

[ANN] CodeLite IDE 5.4 / wxCrafter 1.4 have been released!

Hello all,

I am happy to announce that CodeLite IDE 5.4 and wxCrafter 1.4 have been released.
( both are compiled and using wxWidgets 3.0 )

Here is the announcement post on CodeLite forum:
http://forums.codelite.org/viewtopic.php?f=9&t=2404

Enjoy
by eranif
Mon Jan 13, 2014 12:25 pm
Forum: Compiler / Linking / IDE Related
Topic: Linking Libs multilibs in wxWidgets 3.0
Replies: 6
Views: 4540

Re: Linking Libs multilibs in wxWidgets 3.0

Did you try changing the order of linking?

Try placing html before webview (as the link error comes from the html.so and not from your application):

Code: Select all

$(shell $(WX_TOOL) --debug=yes --libs std,aui, stc, html,webview --unicode=yes);
Eran
by eranif
Thu Dec 19, 2013 8:37 pm
Forum: Platform Related Issues
Topic: wxMSW programs are very slow to start.
Replies: 2
Views: 3462

Re: wxMSW programs are very slow to start.

I encountered this problem a year ago (or maybe more)
I did some reasearch and it turns out to be several factors:

- The fact that I used the monolithic DLL of wxWidgets
- Changes that were made to GCC

I documented the changes for how to properly build wxWidgets on Windows using MinGW here

Eran