Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    9
    Views
    4,395

    Re: voice recognition

    Sphinx is another recognition engine. It is open source. There are several versions that differ in the required time of processing and the level of accuracy.
  2. Replies
    6
    Views
    2,075

    Re: PyGTK process events

    I think this can help you.
  3. Re: Question about the "key_press_event" in pyGTK

    In order to maintain readability I would change:


    def key_press_event(self, widget, event):
    if event.keyval == 65362:
    do_this()
    if event.keyval == 65363:
    ...
  4. Re: Getting the packages for Motif/X11 to compile

    After a little googling, and knowing absolutely nothing about motif or x, I would say that the function you want to use is "XtManageChild" and not "XtManagerChild".
  5. Replies
    4
    Views
    8,464

    Re: Python Nautilus Context Menu Extension

    According to /usr/share/doc/python-nautilus/examples/README in order to test your extensions you need to do this:

    There are some examples in /usr/share/doc/python-nautilus/examples/ that you...
  6. Replies
    6
    Views
    3,792

    Re: GTK Programming Book

    The latest book (covering gtk 2.8 and some aspects of 2.10) is Foundations of GTK+ Development . You can find here a good review.
  7. Replies
    7
    Views
    1,251

    Re: dynamic array encapsulation problem, C++

    You need to use g++ this way:

    g++ -o program_name TobMain.cc Parray.cc

    or maybe create a library with Parray and then link your program to that library.
  8. Re: Help in crosscompilation: the library libdl.a

    In that case you need to install libc6-dev-i386.
  9. Re: Help in crosscompilation: the library libdl.a

    Those files are in the package "libc6-dev". You can go to http://packages.ubuntu.com and search for packages containing a particular file.
  10. Re: GTK - get changed values of spins not just initial value

    I think what you should do is change:


    cmbStatus.connect("changed", self.statusChanged, spinHour.get_value())to:

    cmbStatus.connect("changed", self.statusChanged, spinHour)and:

    def...
  11. Replies
    13
    Views
    3,852

    Re: Compile Windows .exe files in Linux

    You can install mingw this way:


    sudo apt-get install mingw32

    and then you can simply compile using i586-mingw32msvc-gcc instead of gcc:


    i586-mingw32msvc-gcc -o test.exe test.c
  12. Replies
    4
    Views
    560

    Re: GLib file utility functions... why?

    From gtk-list:



    From the api docs:
  13. Replies
    5
    Views
    9,313

    Re: compiling qt4 applications

    I'm no expert in qt, but seeing:


    g++ -o tviewer hello.o -L/usr/share/qt3/lib -L/usr/X11R6/lib -lqt-mt -lXext -lX11 -lm -lpthread makes me think that you are using qt3's qmake instead of the...
  14. Replies
    2
    Views
    3,040

    Re: pkg-config - adding new package?

    You need to install the -dev package. gtkmm*-dev.
  15. Re: why isn't g_key_file_get_double() not working

    That is also wrong. You can assign an integer to a pointer but the result won't be what you desire. If you were to print the contents of the variable you would see that it's wrong. If you compile the...
  16. Re: why isn't g_key_file_get_double() not working

    gdouble g_key_file_get_double (GKeyFile *key_file,
    const gchar *group_name,
    ...
  17. Re: Help with libpng's png_write_image function

    If that means that the output file isn't a perfect copy of the input file (it just has the same dimensions and palette) then I got the program working by changing:


    --- png-test.c 2006-11-25...
  18. Re: How do I translate my GNOME application? How does one incorporate localization?

    This might be useful(section 22.2):

    http://www.async.com.br/faq/pygtk/index.py?querytype=simple&query=gettext&req=search
  19. Re: Anjuta and working glade plugin on Edgy?

    That plugin isn't functional yet in anjuta. I think developers may have started implementing it in the cvs or svn but I'm not sure.
  20. Replies
    16
    Views
    15,726

    Re: c++ matrix multiplication

    Well I haven't used code::blocks but the include directory shouldn't go in the linker options. You have to look for a section named "include directories" or maybe "cppflags".

    Edit: ok this is what...
  21. Replies
    16
    Views
    15,726

    Re: c++ matrix multiplication

    If you install libnewmat10-dev you can see an example application (with comments) in:

    /usr/share/doc/libnewmat10-dev/examples/example.cpp.gz

    To compile it you need to extract the file...
  22. Replies
    5
    Views
    665

    Re: Manpage for /usr/include/wchar.h

    You need to install manpages-posix-dev:

    sudo apt-get install manpages-posix-dev


    Good luck.
  23. Replies
    2
    Views
    4,096

    Re: kdevelop win32 project

    I don't know if this is the problem, but you have to make sure that you have the "mingw32" package installed:

    sudo apt-get install mingw32

    If you have it installed I'm afraid I can't help you...
  24. Replies
    1
    Views
    4,777

    Re: cannot execute a.out

    In order to execute a program in the current directory you need to prepend "./" before the name of the executable, e.g.:

    ./a.out

    This is because the current directory isn't in the PATH. Anyway...
  25. Replies
    7
    Views
    863

    Re: My newbish c++ makefile questions

    I'm not sure if this would work but maybe you could put `pkg-config --cflags libglademm-2.4` (the backticks are very important) in CPPFLAGS and `pkg-config --libs libglademm-2.4` in LDFLAGS in...
Results 1 to 25 of 72
Page 1 of 3 1 2 3