Re: Compiling with Eclipse

2012-07-16 Thread moh B.
Hi, thanks for the video. But, I think the buttons.h should have the include guard fixed: #ifndef BUTTONS_H #define BUTTONS_H ... ... #endif // BUTTONS_H instead of GTKMM_EXAMPLE_BUTTONS_H On Sun, 2012-07-15 at 22:12 -0300, Rodrigo Nunes wrote: sorry forgot to send the link:

Re: Dealing with dlls

2012-08-25 Thread moh B.
No, no don't request your friend to install the required libs, You have to supply the whole app with all the necessary files and libs - Imagine his friend is a child and this app is for children. Yes a small gtkmm app needs all those libs(Dlls). Happy programming. On Sat, 2012-08-25 at 10:00

Re: How can I show tooltips from menuitems in the statusbar

2012-10-05 Thread Moh B.
On Tue, 2012-10-02 at 10:36 +0200, Juan Angel Moreno wrote: Hi! I want to show the tooltips that each of my menuitems has, in the statusbar of a window. How can I do this?? Greetings jamf ___ Hi, these are the crazy tips to get tooltips

Re: please get me link to tutorial gtkmm 2.4

2012-11-26 Thread Moh B.
On Tue, 2012-11-27 at 01:21 +0700, l...@secy.biz wrote: Hello all. I have already given a link to examples of gtkmm 2.4 but I changed the hard drive and lost the link. I ask you to give me a link to examples of gtkmm 2.4 + glade. Also, if there is documentation of training or just a

Re: please get me link to tutorial gtkmm 2.4

2012-11-27 Thread Moh B.
On Tue, 2012-11-27 at 16:25 +0100, Kjell Ahlstedt wrote: 2012-11-26 21:08, Moh B. skrev: On Tue, 2012-11-27 at 01:21 +0700, l...@secy.biz wrote: Hello all. I have already given a link to examples of gtkmm 2.4 but I changed the hard drive and lost the link. I ask you to give me a link

Re: ArbolOne

2012-11-28 Thread Moh B.
On Wed, 2012-11-28 at 09:08 -0500, Arbol One wrote: Humm, is anybody there? --Hi, Sir, This is not a chat room! Consider asking other questions related to gtkmm, you had responses in the past, I guess - So please, be gentleman. Regards. ___

Re: How to update both the Console and the GTKMM gui window after running other functions

2013-07-30 Thread Moh B.
//main.cpp: //--- // Look at this modified code and pay attention to the order of execution and call th the functions #include gtkmm.h #include iostream using namespace std; int main(int argc, char* argv[]) { Gtk::Main kit(argc, argv); Gtk::Window window;

Re: How to update both the Console and the GTKMM gui window after running other functions

2013-07-31 Thread Moh B.
See here for a timing example. Hope this helps you! http://stackoverflow.com/questions/1118227/glibmm-timeout-signal === On Wed, 2013-07-31 at 08:50 -0400, L. D. James wrote: Thanks Jonas. I have a basic understanding of what you're

Re: How to update both the Console and the GTKMM gui window after running other functions

2013-08-05 Thread Moh B.
Hi, I think you should put: if (Glib::thread_supported()) instead of: if (!Glib::thread_supported()) == Your code see the ! difference. On Mon, 2013-08-05 at 16:27 -0400, L. D. James wrote: Thanks! I added the two libraries.

Re: How to update both the Console and the GTKMM gui window after running other functions

2013-08-05 Thread Moh B.
and my Makefile: begin Makefile all: g++ -std=c++11 -Wall -g3 -c *.cc `pkg-config gtkmm-3.0 --cflags`-pthread g++ -std=c++11 -Wall -g3 *.o `pkg-config gtkmm-3.0 --libs` -lpthread -o thread clean: rm -rf *.o thread begin Makefile

Re: How to update both the Console and the GTKMM gui window after running other functions

2013-08-05 Thread Moh B.
And another thing: You declared a void myprocess1(void); member function == WITH void parameter list BUT in the myLabel::myLabel() constructor you called the myprocess1() WITHOUT any parameter list: This may cause problems to the compiler: protected: Gtk::Label m_label;

Minimum number of lines to update a gui window without clicking a button

2013-08-21 Thread Moh B.
Hi Andrew, Example 6 made it all clear now if canceling is desired. Thanks a lot. I hope you don't stop helping us. Reference: Andrew code: https://mail.gnome.org/archives/gtkmm-list/2013-August/msg00159.html in response to: Minimum number of lines to update a Gtkmm gui window without clicking a