Search:

Type: Posts; User: ehmicky; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    6,111

    Re: [C++] Mkdir command

    Hey,
    Look at create_directories(), from boost::filesystem (and it'll be portable too)
  2. Replies
    0
    Views
    467

    GTK+ Theme creator

    Hi there,

    I'd like to know if a GTK+ Theme creator existed, i.e. a GUI application that helps people visualize and create their GTK+ Theme and produce a gtkrc or gtk.css file. I'm talking about...
  3. Replies
    13
    Views
    667

    Re: [C++]Virtual destructor

    Thanks !
  4. Replies
    13
    Views
    667

    [Solved][C++]Virtual destructor

    Hi,

    If I'm designing a library, should I always make destructors virtual, in case my users derive the class ?
    Thanks :)
  5. Replies
    2
    Views
    721

    Re: IDEs with Split/Multi View Panes

    You've got Vim too, which is my IDE. And you can do whatever you want with them. For example, I have one frame for writing code, one for debugging, one for execution ouput, and can add anymore I...
  6. Replies
    4
    Views
    491

    Re: Go to next command terminal sh script

    Hi,
    You might use the wrong words : I guess when you say "stops" (that we understand as "the script quits/exits"), you want to say "wait", that is the next command is not processed until the former...
  7. Replies
    3
    Views
    911

    Re: gtkmm noob problem

    Hola,
    For the SpinButton, the min/max/value/etc. attributes are set up by giving a RefPtr<Adjustment> during the instantiation. But here since you're using Glade, we can't figure out what's wrong...
  8. Replies
    9
    Views
    1,904

    [SOLVED] Re: Double precision in 64 bit systems

    A double in C on a x86_64 platform is 64 bits on most platforms : check out for example the Linux x86_64 ABI, page 12. I think long double is just required by the standard to be >= double, but I...
  9. Replies
    15
    Views
    949

    Re: how to open/change compiled file

    Hi,
    I'd add that if you don't have the source code, then it might be proprietary software and doing anything which might look like reverse-engineering is a legal-sensitive issue.
  10. Replies
    14
    Views
    1,054

    [SOLVED] Re: Where's cluttermm in Ubuntu?

    Oops, I forgot : what about :

    ls -l /usr/local/lib/*
    since you compiled from source.
  11. Replies
    14
    Views
    1,054

    [SOLVED] Re: Where's cluttermm in Ubuntu?

    There's something weird : you compile with the flag -lglibmm-2.4, but it complains about not finding the symbols for Glib::ustring. What's the output of :

    ls -l /usr/lib/lib*mm*
  12. Replies
    14
    Views
    1,054

    [SOLVED] Re: Where's cluttermm in Ubuntu?

    What's the output of pkg-config --libs --cflags cluttermm-1.0 ?
  13. Replies
    14
    Views
    1,054

    [SOLVED] Re: Where's cluttermm in Ubuntu?

    Hi,
    I didn't find any GNU/Linux package either. If you don't find it, you can still compile from source
  14. Replies
    9
    Views
    1,043

    Re: C0x11: threading capabilities

    Actually GDB does have multithreaded applications debugging facilities, but I don't know if there's better on GNU/Linux.
  15. Replies
    3
    Views
    659

    Re: [C++]Interaction between Gtkmm and Pango

    Thanks for your reply,
    Indeed Gtk provides most of the things for Gtk::Entry and Gtk::Label that can be achieved though a Pango::layout. However, there are still few interesting things missing, such...
  16. Replies
    4
    Views
    2,754

    Re: Using a UTF-16 locale

    Ok thanks,
    So actually, no matter why, if Linux can't run a UTF-16 terminal, then I'll have to switch to Windows (or use a VM, etc.) to make the tests, so it answers my question. Thanks !
  17. Replies
    3
    Views
    659

    Re: [C++]Interaction between Gtkmm and Pango

    A little up.
    Sorry for it, but I've learned all Pango, and I feel like I can't use it for my primary goal (manipulating GTK+ text), it's a bit frustratring :(
  18. Replies
    4
    Views
    2,754

    Re: Using a UTF-16 locale

    Thanks for your reply,
    But Windows manages to handle this issue since it uses UTF-16 natively, doesn't it ?
  19. Replies
    4
    Views
    2,754

    [Solved]Using a UTF-16 locale

    Hi there,

    I'd like to know how to use a UTF-16 locale instead of the standard UTF-8 one in Ubuntu. Note that my question is not about conversion between UTF-16 and UTF-8 (iconv, etc.), but about...
  20. Replies
    9
    Views
    1,043

    Re: C0x11: threading capabilities

    You're right.
    If you want to use it, you'll still have to use a compiler that has implemented it (g++ did), or you can use boost::thread which is almost the same.
  21. Replies
    14
    Views
    633

    [SOLVED] Re: is this a dash shell error?

    I think you can use Vaphell solution, it's full-bash and elegant. Just replace */* by "$PWD"/** if you want a recursivity of more than 2 levels, and do a "shopt -s globstar" before in order for ** to...
  22. Replies
    14
    Views
    633

    [SOLVED] Re: is this a dash shell error?

    Hi,

    Is it what you're trying to do ?

    for i in * ; do cp "$i" "$(basename "$PWD")_$i" ; done
  23. Replies
    3
    Views
    659

    [C++]Interaction between Gtkmm and Pango

    Hi everyone,

    I've got some issues while trying to use Pangomm inside Gtkmm. The methods get_layout() from Gtk::Entry and Gtk::Label provides a Pango::Layout, but when this Pango::Layout is...
  24. Replies
    3
    Views
    409

    Re: Nautius/kernel boundary?

    Hi,

    I might be wrong but I don't think there's any boundary, cause Nautilus don't use "kernel-mode code" : it uses Glibc, which itself calls Linux syscalls, which triggers kernel code.
  25. Replies
    0
    Views
    579

    [C++]Using boost::bind with Gtkmm

    Hi,

    It looks like Gtkmm signals have some issues to be connected with boost::bind functors, when the callback returns a non-void value :

    #include <boost/bind.hpp>
    #include <gtkmm.h>
    ...
Results 1 to 25 of 28
Page 1 of 2 1 2