Author Topic: No "filemanager" window within CodeBlocks?  (Read 5062 times)

Offline oliver1974

  • Single posting newcomer
  • *
  • Posts: 5
No "filemanager" window within CodeBlocks?
« on: November 17, 2007, 12:33:06 am »
I'm new to CodeBlocks and I don't understand the "management" window.. yet.

I'm only able to see resources like wxWidgets  - Forms an dialogs.. but how can I see all
the .c or .cpp files which belong to a project (something like the "files" window in Netbeans.. or
Eclipse).

The "open files" window isn't the same....

There has to be something.. but I'm obviously too blind to find it...

EDIT: Hmm, strange.. After tinkering around with the "Project->Add files" menu item, a whole bunch of new
folders appeared under the project node in the management window.. like "sources, headers, others.."

Nice, but I don't get why?
« Last Edit: November 17, 2007, 12:44:40 am by oliver1974 »

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: No "filemanager" window within CodeBlocks?
« Reply #1 on: November 17, 2007, 06:27:53 am »
In the manager you have at least two tabs: "Projects" (here are youre files), "Symbols" (that is where youre wxSmith stuff is) and (if it's not free floating or docked) the "Symbol browser".
If you cannot see them all, the manager is just to small.
You can drag the border between editor and manager with the mouse to resize it, or you click on the little triangle right next to the visible tabs(s) to move to the hidden one (or two).

Offline oliver1974

  • Single posting newcomer
  • *
  • Posts: 5
Re: No "filemanager" window within CodeBlocks?
« Reply #2 on: November 17, 2007, 11:11:21 pm »
Well, thanks alot for that info..

And thanks for the debian nightly builds, great! I just installed the packages
on my "Sidux" - box (Sidux is based on debian unstable.. but I'm quite sure you know this. :-)  )
but I'm still fighting with the wxWidgets stuff (where are the libs? I keep getting

/usr/include/wx-2.8/wx/platform.h|196|error: wx/setup.h: Datei oder Verzeichnis nicht gefunden| (File not found)

which looks like a broken wxWidgets environment for me... (but this doesn't belong in this thread, I know..)

Offline Knx

  • Multiple posting newcomer
  • *
  • Posts: 41
Re: No "filemanager" window within CodeBlocks?
« Reply #3 on: November 19, 2007, 11:10:38 am »
Hello oliver,

I always get the same problem, so I gave up and now I'm going to work with makefiles...

To compile wxWidgets, I've used MSYS and:
Code
./configure --prefix=/c/wx --disable-debug --enable-shared --disable-unicode
make
make install

And then:
Code
main: main.o
g++ -o main.exe frmMain.o main.o `/c/wx/bin/wx-config --libs`
main.o: main.h main.cpp frmMain.o
g++ -c main.h main.cpp `/c/wx/bin/wx-config --cxxflags`
frmMain.o: frmMain.h frmMain.cpp
g++ -c frmMain.h frmMain.cpp `/c/wx/bin/wx-config --cxxflags`

For me, wxWidgets + C::B doesn't exist, C::B doesn't support wx...
Using:
• Code::Blocks SVN        • wxWidGets 2.8.6
• Windows XP SP2          • MinGW Latest  Wish List • Code folding (For wxSmith and more options like NetBeans)

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: No "filemanager" window within CodeBlocks?
« Reply #4 on: November 19, 2007, 11:35:11 am »
For me, wxWidgets + C::B doesn't exist, C::B doesn't support wx...

C::B doesn't support MSYS compiled wx as of date. If you use normal Windows command line to compile wx, C::B can support that.
Be a part of the solution, not a part of the problem.

Offline Knx

  • Multiple posting newcomer
  • *
  • Posts: 41
Re: No "filemanager" window within CodeBlocks?
« Reply #5 on: November 19, 2007, 02:26:32 pm »
For me, wxWidgets + C::B doesn't exist, C::B doesn't support wx...

C::B doesn't support MSYS compiled wx as of date. If you use normal Windows command line to compile wx, C::B can support that.

I have tons os topics, I've annoyed you enought...
I know C::B don't support MSYS WX...

But It always says can't find Release configuration, or can't find setup.h, or can't find -lwx_core, or can't find -lwx28 whatever...
For me it doesn't work.
Using:
• Code::Blocks SVN        • wxWidGets 2.8.6
• Windows XP SP2          • MinGW Latest  Wish List • Code folding (For wxSmith and more options like NetBeans)

Offline Morphius Faydal

  • Multiple posting newcomer
  • *
  • Posts: 75
Re: No "filemanager" window within CodeBlocks?
« Reply #6 on: November 20, 2007, 10:06:22 pm »
Also, THE OP IS USING LINUX.

Don't need to f-around with MSYS.

oliver: Check your installed wxWidgets.

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: No "filemanager" window within CodeBlocks?
« Reply #7 on: November 21, 2007, 12:11:03 am »
But It always says can't find Release configuration, or can't find setup.h, or can't find -lwx_core, or can't find -lwx28 whatever...
For me it doesn't work.

I use C::B + wxWidgets on Linux and Windows (W2K and XP Professional) without any problems.
I have compiled wxWidgets (at the moment 2.8.6) on Windows from windows commandline with MingW32 (actually 4.2).