Re: TextView, TextBuffer and cursor moves

2013-03-25 Thread Armin Burgmeier
You can use the mark-set signal and in the signal handler check whether the moved mark is the insert mark. Here is example code: http://git.0x539.de/?p=infinote.git;a=blob;f=libinftextgtk/inf-text-gtk-buffer.c;h=61c805f66b9d59ae91a4725532fae5b829fdd002;hb=HEAD#l1032 Cheers, Armin On Mon,

Re: Exception handling and Windows

2011-08-05 Thread Armin Burgmeier
On Fri, 2011-08-05 at 12:52 +0200, Andre Colomb wrote: Yoann Le Montagner wrote: I've managed to get around my problem by building the gtkmm libraries by myself, with the latest version of the MinGW compiler. That's exactly what I did a while back. One problem is the default exception

Re: Exception handling and Windows

2011-08-04 Thread Armin Burgmeier
Hi Yoann, are you using MinGW or MSVC? If the former, then you should make sure to use the same compiler as the one the official binaries were built with, see http://live.gnome.org/action/info/gtkmm/MSWindows/ Cheers, Armin On Thu, 2011-08-04 at 11:50 +0200, Yoann Le Montagner wrote: Hi, I

Re: No gtkmm runtime for windows?

2011-07-01 Thread Armin Burgmeier
On Thu, 2011-06-23 at 19:39 -0500, Tom Richard wrote: Why is this one of some downloads that are impossible to actually download? Endless (might I add- pointless links) that are annoying. If you don’t want anyone to have it, take it off. What link are you talking about? There is no gtkmm

Re: Signals with default handlers

2011-06-01 Thread Armin Burgmeier
Hi Gavin, You can try connecting your handler before the default handler by setting the after parameter to false when connecting the signal handler: view.signal_console_message().connect(..., false); Otherwise if the default handler returns true any handlers after it might not get called. The

Re: Gtkmm for Windows: difference between runtime and devel

2011-05-16 Thread Armin Burgmeier
On Mon, 2011-05-16 at 16:29 +0100, Carlos Lopez Gonzalez wrote: Hi, browsing the 32 bits installation programs from the gtkmm for windows installers [1] I've noticed that since 2.16 there is only gtkmm-win32-devel versions and there are not gtkmm-win32-runtime versions like in 2.14 and

Re: Cairomm MSWindows binaries

2011-05-12 Thread Armin Burgmeier
The gtkmm windows installer also includes cairomm binaries (http://live.gnome.org/action/info/gtkmm/MSWindows/). Best, Armin On Wed, 2011-05-11 at 11:57 +0100, Carlos Lopez Gonzalez wrote: Hi there, In the develop of a multiplatform application [1] we are facing the problem of start using

Re: gtkmm and Windows

2011-04-28 Thread Armin Burgmeier
I normally use the GTK+ bundle to create the gtkmm installer. Since there is no bundle for 2.24 or 3.0 (and probably there will never be) I will have to look for an alternative. However this requires time and I am quite short on spare time currently so it might take a while until I get to building

Re: gtkmm 3.0

2011-02-22 Thread Armin Burgmeier
On Tue, 2011-02-22 at 10:45 -0500, ArbolOne wrote: On 2/21/2011 7:19 AM, Murray Cumming wrote: I guess we should do an API-stable gtkmm 3.0.0 release soon. Please do port your application code to the latest gtkmm 2.99.x release, and tell us about any problems. bugzilla is best for that.

Re: Distribuition Problem with gtkmm 2.22 - Themes are not loading.

2011-02-01 Thread Armin Burgmeier
On Mon, 2011-01-31 at 16:58 +, Filipe Apostolo wrote: I've lost a few hours around this problem, double checking the listed files getting them one by one etc. . And I sent the first email when I've lost faith of finding the solution by my self. I FOUND the solution 30secons after hitting

Re: EXTERNAL: RE: Do Gtkmm 2.22 have problems on windows?

2010-11-10 Thread Armin Burgmeier
On Wed, 2010-11-10 at 09:57 -0500, Damon Register wrote: On 10/21/2010 2:16 PM, Oliver Duis wrote: Sorry, I think I have to correct myself: There seem to be different compiles of the GCC/GTK runtimes What version of GCC is used to compile the gtkmm windows package? I am using gcc 4.4 from

Re: set_text () is not displaying the output.

2010-11-09 Thread Armin Burgmeier
On Tue, 2010-11-09 at 00:24 -0200, Rodrigo Nunes wrote: for(int x = size; x = 0; x--){ Exit = Exit + Entry[x]; } The logic of this loop is incorrect. It should be for(int x = size; x 0; x--) Exit = Exit + Entry[x-1]; Also note that this won't work

Re: Do Gtkmm 2.22 have problems on windows?

2010-11-09 Thread Armin Burgmeier
://ftp.gnome.org/pub/GNOME/binaries/win32/gtkmm/2.22/gtkmm-win32-devel-2.22.0-2.exe [2] ftp://ftp.gnome.org/pub/GNOME/binaries/win64/gtkmm/2.22/gtkmm-win64-devel-2.22.0-2.exe Le 14/10/2010 15:16, Armin Burgmeier a écrit : Right, I didn't get to update it yesterday. Will do soon. I think

Re: ANNOUNCE: gtkmm 2.22.0

2010-11-09 Thread Armin Burgmeier
On 08.11.2010 12:00, Nicolas Papier wrote: Hi, I think that gtkmm 2.22 installation program provided libxml2-2.dll instead of libxml2.dll. Indeed, using the dependency walker shows that the installed libglade-2.0-0.dll depends on libxml2.dll. Is this a mistake or have i miss something ? This

Re: gtk themes with gtkmm on Windows

2010-11-03 Thread Armin Burgmeier
On Tue, 2010-11-02 at 15:46 -0400, Damon Register wrote: I have built an app for Windows using Mingw and gtkmm. The app works great on the computer where it was compiled but when I copy it to another PC, it does not have the ms-windows theme. After completing the instructions at

Re: Redistributing gtkmm 2.16 to windows machines

2010-11-03 Thread Armin Burgmeier
On Wed, 2010-11-03 at 17:09 +, Filipe Apostolo wrote: Hi to everyone, I'm developing gtkmm applications with gtkmm2.16 since the further versions until the last one where unstable for windows. Now I'm trying to redistrubute the applications with local dll. I've created the application

Re: Windows7-64 and Gtk::Stock::CLOSE

2010-11-03 Thread Armin Burgmeier
On Wed, 2010-11-03 at 17:53 -0400, ArbolOne wrote: I have initialized my button like this: btnQuit = Gtk::manage(new Gtk::Button(Gtk::Stock::CLOSE)); However, the button is displayed without the 'close icon'. What can I do to make gtkmm display the icons in the buttons? TIA

RE: ANNOUNCE: gtkmm 2.22.0

2010-10-25 Thread Armin Burgmeier
Thanks. I have added the file to the Wiki. Cheers, Armin On Mon, 2010-10-25 at 15:47 +0200, Nicolas Papier wrote: Hi, I found that the library bin\libexpat-1.dll is not listed in the Redistributing part of the wiki page (http://live.gnome.org/gtkmm/MSWindows). Maybe someone could do this

Re: Do Gtkmm 2.22 have problems on windows?

2010-10-19 Thread Armin Burgmeier
What problems did you encounter? Armin On Mon, 2010-10-18 at 20:59 +, Olli wrote: Actually I tried 2.22 (offical) on Win7 using RawTherapee, but it seems it's still pretty unstable. I reverted back to 2.16. ___ gtkmm-list mailing list

Re: Do Gtkmm 2.22 have problems on windows?

2010-10-14 Thread Armin Burgmeier
Right, I didn't get to update it yesterday. Will do soon. I think that most problems have been fixed and 2.22 should be rather safe to use, however I have not performed extensive tests. So it would be great to hear from people who give 2.22 a try. Armin On Thu, 2010-10-14 at 11:03 +0100, Filipe

Re: MSVC 2010 Binaries

2010-10-13 Thread Armin Burgmeier
Armin Burgmeier wrote: On Fri, 2010-09-10 at 22:41 +0200, michi7x7 wrote: Hello, when will MSVC 2010 binaries be availlable? I always run into problems when compiling it by myself. I don't know yet. Maybe for the upcoming gtkmm 2.22 installer, but no promises. I have added MSVC 2010

Re: Windows 64 bit gtkmm binaries

2010-10-09 Thread Armin Burgmeier
On Sat, 2010-10-09 at 14:00 -0400, ArbolOne wrote: On 9/19/2010 5:07 PM, Armin Burgmeier wrote: There has been some interest in 64 bit gtkmm binaries for Windows recently. I have built the gtkmm stack on 32 and 64 bit Windows with the mingw-w64 toolchain from [1]. The result is at [2

Re: Windows 64 bit gtkmm binaries

2010-10-09 Thread Armin Burgmeier
On Sat, 2010-10-09 at 17:25 -0400, ArbolOne wrote: On 10/9/2010 4:59 PM, Armin Burgmeier wrote: On Sat, 2010-10-09 at 14:00 -0400, ArbolOne wrote: On 9/19/2010 5:07 PM, Armin Burgmeier wrote: There has been some interest in 64 bit gtkmm binaries for Windows recently. I have built

Re: Gtk::StatusIcon missing some virtual signal handlers?

2010-09-22 Thread Armin Burgmeier
I think this is not available in gtkmm 2 because it would have broken ABI. The unstable documentation refers to gtkmm 3 for which it has been added. Armin On Wed, 2010-09-22 at 13:36 +0200, phan wrote: Hello, I've got something like this: -- class Derivered: public

Windows 64 bit gtkmm binaries

2010-09-19 Thread Armin Burgmeier
There has been some interest in 64 bit gtkmm binaries for Windows recently. I have built the gtkmm stack on 32 and 64 bit Windows with the mingw-w64 toolchain from [1]. The result is at [2]. This is supposed to be used with the current 64 bit GTK+ all-in-one-bundle from [3] (you will have to make

Re: MSVC 2010 Binaries

2010-09-13 Thread Armin Burgmeier
On Fri, 2010-09-10 at 22:41 +0200, michi7x7 wrote: Hello, when will MSVC 2010 binaries be availlable? I always run into problems when compiling it by myself. I don't know yet. Maybe for the upcoming gtkmm 2.22 installer, but no promises. Armin

Re: Questions and Problems With gtkmm and Visual C++ 2010

2010-08-04 Thread Armin Burgmeier
Thanks, I have fixed those in the new 2.20.3 installer. Armin On Tue, 2010-08-03 at 07:03 -0400, Jim Orcheson wrote: include\freetype2 Jim Armin Burgmeier wrote: On Mon, 2010-08-02 at 22:34 -0400, Jim Orcheson wrote: Thanks Armin. I misspelled the filename as pagnommconfig.h

Re: Questions and Problems With gtkmm and Visual C++ 2010

2010-08-03 Thread Armin Burgmeier
On Mon, 2010-08-02 at 22:34 -0400, Jim Orcheson wrote: Thanks Armin. I misspelled the filename as pagnommconfig.h when I searched for it. And lib/pangomm-1.4/include is one of two include directories that are missing in gtkmm-v90-d-2_4.vsprops What is the other one? Armin

Re: Question about Glib::ustring.

2010-08-02 Thread Armin Burgmeier
On Tue, 2010-08-03 at 00:48 +1000, Tao Wang wrote: Hi, I'm not sure whether here is the right place for my question, I'm sorry if I'm wrong. I have a class A, and one of its constructor use 'const Glib::ustring' as parameter. So, I think any value of type 'char*', 'std::string',

Re: Questions and Problems With gtkmm and Visual C++ 2010

2010-08-02 Thread Armin Burgmeier
Jim Orcheson wrote: Yes, but as I stated above, there is no pangommconfig.h file installed by the installer. It is at lib/pangomm-1.4/include/pangommconfig.h. Armin ___ gtkmm-list mailing list gtkmm-list@gnome.org

Re: Question about Glib::ustring.

2010-08-02 Thread Armin Burgmeier
Tao Wang wrote: On Tue, Aug 3, 2010 at 1:20 AM, Armin Burgmeier ar...@arbur.net mailto:ar...@arbur.net wrote: On Tue, 2010-08-03 at 00:48 +1000, Tao Wang wrote: Hi, I'm not sure whether here is the right place for my question, I'm sorry if I'm wrong. I

Re: Windows XP64 and gtkmm?

2010-07-28 Thread Armin Burgmeier
You should install gtkmm to a location which does not contain spaces (so not to C:\Program Files (x86)) since pkg-config has a problem with those and fails to generate correct flags. There is already a warning about this in recent installers. Armin On Wed, 2010-07-28 at 07:35 -0400, ArbolOne

Re: Gtk(mm) crashes when using the stock

2010-07-28 Thread Armin Burgmeier
Can you provide a minimal example program which shows the problem and attach it to a bug in bugzilla (CCing me on the bug), please? Thanks, Armin On Wed, 2010-07-28 at 08:13 +0200, mi...@michi7x7.de wrote: I'm using the latest Windows-Build and the original gtkrc-file michi7x7 Am

Re: How to get rid of command prompt under windows os

2010-07-28 Thread Armin Burgmeier
If you use g++, compile with -mwindows. If you use MSVC, choose the Win32 subsystem in the Linker settings in the Project properties (if I remember correctly). Armin On Tue, 2010-07-27 at 19:44 -0700, gk23 wrote: If I compile and execute the folowing program under windows allways appears the

Re: Patch for adding VS 2010 property sheet files.

2010-07-19 Thread Armin Burgmeier
On Tue, 2010-07-20 at 00:02 +1000, Tao Wang wrote: Hi, MS VS 2010 doesn't not support .vsprops any more, the new kind of thing is .props. MSDN said the previous one is not full XML, the new one is. Anyway, I use VS 2010 covert the VS2008 property sheet files to VS2010 files. I attached the

Re: Standalone Glibmm::ustring

2010-06-14 Thread Armin Burgmeier
On Mon, 2010-06-14 at 18:35 +0200, Jasper Horn wrote: Murray Cumming wrote: I guess you mean gtkmm, not glibmm, right? Ah, yes, how stupid. It does indeed mention 20 dlls you will need for gtkmm, and says nothing about which dlls you need for just glibmm. By trial on error I have

Re: Freedom

2010-05-24 Thread Armin Burgmeier
On Mon, 2010-05-24 at 11:55 -0400, ArbolOne wrote: Now there is much conversation about GTKmm 3.x I would like to bring a point that has been bothering very much. But before I go on I should kiss some behind, you know... protocol. I love GTKmm, GTKmm is the best, GTKmm and MS-Win are like

Re: A Small mistake in libgdamm-3.99.19

2010-05-02 Thread Armin Burgmeier
On Sun, 2010-05-02 at 16:24 +0530, sankar bose wrote: In the file sqlbuilder.cc line 72 we have guint SqlBuilder::add_cond(SqlOperatorType op, const Glib::ArrayHandleuint op_ids) A small mistake in the line as all knows the correct one would be guint

Re: Emitting and/or Catching a signal

2010-04-29 Thread Armin Burgmeier
On Sat, 2010-03-27 at 21:43 -0400, ArbolOne wrote: OS WinXP SP3 MinGW and MSYS= latest! GCC Reading specs from D:/XWin/mingw/bin/../lib/gcc/mingw32/3.4.5/specs Configured with: ../gcc-3.4.5/configure --with-gcc --with-gnu-ld --with-gnu-as --host=mingw32 --target=mingw32

Re: Any update about 2.18 Windows regression?

2010-04-28 Thread Armin Burgmeier
On Thu, 2010-04-29 at 00:52 +1000, Dancefire wrote: Hi, I saw the message on the page of gtkmm on Windows: http://live.gnome.org/gtkmm/MSWindows -- Please use version 2.16 for now, not 2.18 except if you really need 2.18 stuff. This is because GTK+ 2.18 contains serious regressions

Re: ANNOUNCE: gtkmm 2.20.0 and glibmm 2.24.0

2010-03-30 Thread Armin Burgmeier
On Mon, 2010-03-29 at 18:13 +0200, michi7x7 wrote: Am 2010-03-29 14:07, schrieb Murray Cumming: *** gtkmm 2.20: gtkmm 2.20 wraps new API in GTK+ 2.20. It is is API/ABI-compatible with gtkmm=2.4. It is a version of the gtkmm-2.4 API. gtkmm stays in-sync with GTK+ by following the

Re: One crash issue

2010-03-21 Thread Armin Burgmeier
On Sat, 2010-03-20 at 22:12 +0800, Zhu Bicen wrote: Below code can be compiled and launched successfully, but after exit it(by hitting the close button ) it crash. VC++ 2005 express give me following info: Windows has triggered a breakpoint in LogLeader.exe. This may be due to a corruption

Re: GTKmm-2.18.2-2 patch for VC Compiler

2010-02-26 Thread Armin Burgmeier
Hi Urs, Can you file that as a bug to fontconfig on bugs.freedesktop.org? This is where that header actually comes from in the gtkmm installer. I'll still try to remember to apply that patch for the next installer but it would be nice to have this fixed at its root in the end. Thanks, Armin On

Re: Building gtksourceviewmm on Windows

2010-02-07 Thread Armin Burgmeier
On Sat, 2010-02-06 at 12:08 -0600, Adrián Ortega wrote: Hello, I'm trying to build gtksourceviewmm from source on Windows, hoewever I haven't been able to do so. I managed to build it under Linux and used it with no problems. I am using Cywgin 1.7.1 to try building the library. I want to

Re: gtkmm-win32 2.16.0 runtime installer

2010-02-03 Thread Armin Burgmeier
On Wed, 2010-02-03 at 16:13 +, Filipe Apostolo wrote: Hi, I recently update my gtkmm development package to version 2.16, I wanted to update 2.18 but in http://live.gnome.org/gtkmm/MSWindows#Using_the_Installers there is an advise to not use this version on windows. I now wanted to

Re: Putting a image on the Gtk::Button..?

2010-02-01 Thread Armin Burgmeier
On Mon, 2010-02-01 at 14:09 +0530, sankar bose wrote: Hi Armin can you please answer my question . I want to create a program which minimizes into the task bar and right clicking into it should pop up a menu. Gtk::StatusIcon might be what you are looking for. It makes the program go to

Re: Putting a image on the Gtk::Button..?

2010-01-30 Thread Armin Burgmeier
On Sat, 2010-01-30 at 17:54 +0530, sankar bose wrote: Hi, i have created a very small program to put a simple image on the button . the method show_all does not work i mean a cant see the image but the explicitly calling the show method works. My program is given below.. I think the

Re: Putting a image on the Gtk::Button..?

2010-01-30 Thread Armin Burgmeier
On Sat, 2010-01-30 at 18:10 +0530, sankar bose wrote: Hi i am very sorry i forgot to mention that i am programming under windows. Is displaying images on the button disabled( by default) by windows ?? and that's why i have to call the show method. Yes, it is also disabled by

Re: Putting a image on the Gtk::Button..?

2010-01-30 Thread Armin Burgmeier
On Sat, 2010-01-30 at 13:53 +0100, Murray Cumming wrote: On Sat, 2010-01-30 at 13:32 +0100, Armin Burgmeier wrote: I think the problem is that on your system the default is to not show images in buttons (this is GNOME's default since 2.28). I guess the image shows up normally if you turn

Re: Gtkmm 2.18.2-1 windows package problem

2009-11-01 Thread Armin Burgmeier
On Sun, 2009-11-01 at 11:42 +0530, sankar bose wrote: Hi i am having problem with the gtkmm 2.18.2-1 windows package.please help me. i have installed the package in c:\gtkmm at first i get this message C:\Documents and Settings\Sankarpkg-config --cflags gtk+-2.0 Package fontconfig was not

Re: My build_filename() patch

2009-10-26 Thread Armin Burgmeier
On Mon, 2009-10-26 at 09:48 -0200, Fabrício Godoy wrote: Hi, 2009/10/26 Mark Roberts gt...@manumark.de Dear Fabrício and list, Fabrício wrote: I submited a patch in #599578[1]. Thanks.

gtkmm 2.18 Windows installer?

2009-10-21 Thread Armin Burgmeier
Is anyone keen on a Windows installer for gtkmm 2.18? There is no GTK+ bundle yet, and Tor Lillqvist, the GTK+ Win32 maintainer, says this is because GTK+ 2.18 is still quite buggy on Windows (e.g. does not support the native Windows theme). As there are invidual zip packages for GTK+ 2.18 I can

Re: gtkmm 2.18 Windows installer?

2009-10-21 Thread Armin Burgmeier
On Wed, 2009-10-21 at 20:33 +0200, Murray Cumming wrote: On Wed, 2009-10-21 at 19:14 +0200, Armin Burgmeier wrote: Is anyone keen on a Windows installer for gtkmm 2.18? There is no GTK+ bundle yet, and Tor Lillqvist, the GTK+ Win32 maintainer, says this is because GTK+ 2.18 is still quite

Re: Gtk::VolumeButton how to change value without emmiting signal?

2009-10-14 Thread Armin Burgmeier
Mark Roberts wrote: Dear Sledge Hammer, I am using a Gtk::VolumeButton. I want to change it's value without emmiting singal_value_changed. Is this possible? I am interested what the list will answer. I had the same question a few years ago and found that it was the wrong question. My

Re: Capturing Win32 WM_* messages in gtkmm application

2009-10-08 Thread Armin Burgmeier
Mohith Manoj wrote: Hello, I have a gtkmm application running on window. Now there is this Win32 message (WM_DEVICECHANGE) that would help me detect device connect / disconnect event. I used to do it while I was using MSVC++. Nowadays after coming to gtkmm teritory I haven't seen much of

Re: GIO and GTKmmWinPort

2009-10-08 Thread Armin Burgmeier
On Thu, 2009-10-08 at 19:51 -0400, ArbolOne wrote: Have just installed the latest version of Gtkmm for Window and, going through the documentation that came with the installation, I found that there is no documentation for GIO. Is GIO part of the GTKmmWinPort? Yes, giomm is part of the

Re: slow compilation in windows

2009-10-05 Thread Armin Burgmeier
Renato Merli wrote: Hello friends, Here, compilation of gtkmm projects is taking too much time to complete if on microsoft windows. Even a hello world take minutes to compile, its ridiculous.. The same happen with gcc and visual c++. Something must be wrong or not ? For gcc, if you use

Re: Thread problem in Windows

2009-09-21 Thread Armin Burgmeier
Glib::Thread *const opcWriterThread = Glib::Thread::create( sigc::mem_fun(this, MyClass::ThreadTest), true); opcWriterThread-join(); writing.run(); Joining a thread means waiting for it to finish. So you are waiting for the thread here before running the

Re: Thread problem in Windows

2009-09-21 Thread Armin Burgmeier
Filipe Apostolo wrote: Armin Burgmeier wrote: Glib::Thread *const opcWriterThread = Glib::Thread::create( sigc::mem_fun(this, MyClass::ThreadTest), true); opcWriterThread-join(); writing.run(); Joining a thread means waiting for it to finish. So you

Re: Thread problem in Windows

2009-09-21 Thread Armin Burgmeier
Filipe Apostolo wrote: Filipe Apostolo wrote: Armin Burgmeier wrote: Filipe Apostolo wrote: Armin Burgmeier wrote: Glib::Thread *const opcWriterThread = Glib::Thread::create( sigc::mem_fun(this, MyClass::ThreadTest), true); opcWriterThread-join

Re: Official GTKmm x64 package

2009-08-27 Thread Armin Burgmeier
On Wed, 2009-08-26 at 11:12 +0200, Mark Roberts wrote: Soo Wei Tan wrote: Is there any chance of a official GTKmm x64 redist and/or devel package anytime in the future? I forgot to mention, this is for Windows. Armin Burgmeier wrote: For the forseeable future at least not from

Re: Official GTKmm x64 package

2009-08-25 Thread Armin Burgmeier
Soo Wei Tan wrote: Hi all, Is there any chance of a official GTKmm x64 redist and/or devel package anytime in the future? For the forseeable future at least not from my side, as I don't have a 64 bit Windows. Armin ___ gtkmm-list mailing list

Re: Can't process Gtk::Builder::get_widget errors

2009-07-21 Thread Armin Burgmeier
Саша Иваненко wrote: Hi all I use Gtk::Builder to load UIs from glade-generated xml on win32(Visual Studio 9.0). Problem is what if widget with a given name does not exist get_widget generates access violation system exception, without any chance for me to catch it. All I can do is to check

Re: Microsoft Visual studio Linker problem

2009-06-28 Thread Armin Burgmeier
On Sat, 2009-06-27 at 14:35 +0300, Daemon wrote: Hi everyone, i am new in this list and also in gtkmm. So i face some problems I download the gtkmm , and i installed it carefully, following exactly the instructions in this. Also i tried this. However, when i try to compile it with

Re: Microsoft Visual studio Linker problem

2009-06-28 Thread Armin Burgmeier
application links against, in the Visual Studio project options. This has nothing to do with moving library files around. On Sun, Jun 28, 2009 at 3:16 PM, Armin Burgmeier ar...@arbur.net wrote: On Sat, 2009-06-27 at 14:35 +0300, Daemon wrote: Hi everyone, i am new

Re: gtkmm-2.16 redist problem (Win32)

2009-06-14 Thread Armin Burgmeier
On Sat, 2009-06-13 at 17:34 +0200, Kamil Pawłowski wrote: I do not find gtkmm-runtime packages, but I found redist directory in gtkmm-devel. So I try to use it, but there is a problem. Because on Vista i've got 0xc07b problem, on Windows XP I just got crash, only Wine run this properly.

Re: gtkmm-2.16 redist problem (Win32)

2009-06-14 Thread Armin Burgmeier
On Sun, 2009-06-14 at 13:54 +0200, Armin Burgmeier wrote: On Sat, 2009-06-13 at 17:34 +0200, Kamil Pawłowski wrote: I do not find gtkmm-runtime packages, but I found redist directory in gtkmm-devel. So I try to use it, but there is a problem. Because on Vista i've got 0xc07b problem

Re: Force english locale on Win32

2009-06-07 Thread Armin Burgmeier
On Sun, 2009-06-07 at 14:10 +0400, Саша Иваненко wrote: Hi All. I use gtkmm for my GUI app on Win32 XP platform. Native locale for my system is russian. Problem is I cant force gtkmm to speak english! I have searched various forums, but nothing helps. I tried to sel locale at program

Re: gtkmm win32 installer cannot remove all installed file?

2009-05-31 Thread Armin Burgmeier
On Sun, 2009-05-10 at 22:36 +0200, Armin Burgmeier wrote: On Fri, 2009-05-08 at 12:35 +1000, Dancefire wrote: Hi, I'm using gtkmm win32 installer, gtkmm-win32-devel-2.16.0-2. I just installed it and uninstalled it. And I found the uninstaller didn't remove all the files. Is this intend

Re: could anyone build gtkmm application on windows?

2009-05-23 Thread Armin Burgmeier
On Sat, 2009-05-23 at 16:47 +0800, 明覺 wrote: I installed mingw and http://ftp.gnome.org/pub/GNOME/binaries/win32/gtkmm/2.16/gtkmm-win32-devel-2.16.0-2.exe, but when I compile the most basic gtkmm application on windows vista by this command, --- g++ -mno-cygwin

Re: how to install gtkglextmm in windows xp and vista?

2009-05-23 Thread Armin Burgmeier
On Sat, 2009-05-23 at 09:25 +0800, 明覺 wrote: I have developed a small app using gtkglextmm, and some users want to test it in their windows(xp or vista) machine, so I'm trying to figure out the steps to build my gtkglextmm app on windows. I have installed MinGW, gtkmm successfully in windows,

Re: how to install gtkglextmm in windows xp and vista?

2009-05-23 Thread Armin Burgmeier
On Sat, 2009-05-23 at 18:21 +0800, 明覺 wrote: On Sat, May 23, 2009 at 4:59 PM, Armin Burgmeier ar...@arbur.net wrote: On Sat, 2009-05-23 at 09:25 +0800, 明覺 wrote: I have developed a small app using gtkglextmm, and some users want to test it in their windows(xp or vista) machine, so I'm

Re: gtkmm win32 installer cannot remove all installed file?

2009-05-10 Thread Armin Burgmeier
On Fri, 2009-05-08 at 12:35 +1000, Dancefire wrote: Hi, I'm using gtkmm win32 installer, gtkmm-win32-devel-2.16.0-2. I just installed it and uninstalled it. And I found the uninstaller didn't remove all the files. Is this intend to be or a bug in the installer? or did I miss anything? It's

Re: how to prevent the console window poping out when running gtkmm app in windows vista?

2009-05-06 Thread Armin Burgmeier
On Wed, 2009-05-06 at 01:36 -0400, Paul Richards wrote: If you compile a non-console app, you'll also need to define WinMain like I do below: #if defined(WIN32) || defined (_WIN32) || defined(WIN64) || defined(_WIN64) namespace windowsh { #include windows.h int WINAPI WinMain(HINSTANCE,

Re: how to prevent the console window poping out when running gtkmm app in windows vista?

2009-05-06 Thread Armin Burgmeier
. For MSVC, I think you can change the application type from Console to GUI somewhere in the project properties. It tells windows I'm going to build a windowed application, not a console app. No other difference as far as I can tell. Armin Armin Burgmeier wrote: On Wed, 2009-05-06 at 01:36

Re: Compilation problem

2009-05-02 Thread Armin Burgmeier
On Thu, 2009-04-30 at 01:09 +0200, Daniel Elstner wrote: Hi, Am Montag, den 27.04.2009, 14:16 -0300 schrieb Fabrício Godoy: I can compile for Windows by two ways, using native Windows (I using gtkmm-win32-devel-2.14.3-2.exe) and Linux cross-compilation. Each one appears to be compiled

Re: gtkmm bundle for win32 broken

2009-03-26 Thread Armin Burgmeier
On Tue, 2009-03-24 at 12:26 -0400, Damon Register wrote: I have installed gtkmm-win32-devel-2.16.0-1.exe from http://ftp.gnome.org/pub/gnome/binaries/win32/gtkmm/2.16/ I am attempting to build glade3-3.6.0 using msys/mingw. After fixing a few small glade bugs, I am able to build and run glade

Re: Building gtkmm on Windows

2009-03-26 Thread Armin Burgmeier
generate_defs_gio.cc:24:35: gio/gunixoutputstream.h: No such file or directory I hit the same problem when I built the windows installer. This is fixed in glibmm SVN, and the glibmm 2.20.1 release will contain it. 2009-03-16 Armin Burgmeier ar...@openismus.com * MSVC_Net2005/giomm

Re: error in docs for libgnomedbmm

2009-03-23 Thread Armin Burgmeier
On Mon, 2009-03-23 at 23:38 +1100, Grizzly(Francis Smit) wrote: Hi in the docs it says here: http://www.gtkmm.org/docs/libgnomedbmm-3.0/docs/tutorial/html/ch04s02.html that the parameter syntax for Modification queries is: ##/*:name='+0 :type=gint'*/ but that give an error the correct

Re: Problem of building gtkmm program with CMake under Windows

2009-03-23 Thread Armin Burgmeier
On Fri, 2009-03-20 at 23:55 +1100, Dancefire wrote: On Fri, Mar 20, 2009 at 9:54 PM, Armin Burgmeier ar...@arbur.net wrote: On Fri, 2009-03-20 at 17:41 +1100, Dancefire wrote: Hi, Has anyone successfully build gtkmm program with CMake under Windows? I have tried, but got many

Re: Bug of localization in gtkmm/Win32 installer

2009-03-20 Thread Armin Burgmeier
On Fri, 2009-03-20 at 17:40 +1100, Dancefire wrote: Hi, I tested the latest 2.16-1 gtkmm-win32 installer on my computer. If an earlier version of gtk installed, there will be no chance to user to choose the language, and English as the default language will be used. It should give user a

Re: Problem of building gtkmm program with CMake under Windows

2009-03-20 Thread Armin Burgmeier
On Fri, 2009-03-20 at 17:41 +1100, Dancefire wrote: Hi, Has anyone successfully build gtkmm program with CMake under Windows? I have tried, but got many problem, one is inside the cmake script of finding gtkmm. The problem is that it use pkg-config for finding gtkmm. It's ok to find the

Re: GTK+ runtime libraries (for Windows) to stay in lib directory, not in bin

2009-03-20 Thread Armin Burgmeier
On Fri, 2009-03-20 at 09:42 -0300, Paulo Flabiano Smorigo wrote: Hello All, I'm building a stand-alone application for Windows using GTKmm. So, following the instruction at http://live.gnome.org/gtkmm/MSWindows in the GTK+ Runtime section, said that you need to put all libraries in the bin

Re: GTK+ runtime libraries (for Windows) to stay in lib directory, not in bin

2009-03-20 Thread Armin Burgmeier
... Paulo Flabiano Smorigo On Fri, Mar 20, 2009 at 10:09, Armin Burgmeier ar...@arbur.net wrote: On Fri, 2009-03-20 at 09:42 -0300, Paulo Flabiano Smorigo wrote: Hello All, I'm building a stand-alone application for Windows using GTKmm. So, following the instruction at http://live.gnome.org

Re: Windows Installer containing current glibmm?

2009-03-06 Thread Armin Burgmeier
On Thu, 2009-03-05 at 15:08 +0100, Mark Roberts wrote: Dear List! gtkmm is the best toolkit I have ever worked with. My customer is also satisfied. There exists a Windows installer gtkmm-win32-devel-2.14.3-2.exe supplied by Armin Burgmeier, to whom I hereby address thanks. Appreciated

Re: Windows installers for gtkmm development and runtime environments

2009-03-02 Thread Armin Burgmeier
On Mon, 2009-03-02 at 10:08 +0100, Murray Cumming wrote: On Sun, 2009-03-01 at 12:13 +0100, Armin Burgmeier wrote: On Sat, 2009-02-28 at 14:26 -0600, Philip Allison wrote: Hullo all, I've been looking at getting a little gtkmm app I wrote up and running on Windows using MinGW

Re: Windows installers for gtkmm development and runtime environments

2009-03-02 Thread Armin Burgmeier
On Mon, 2009-03-02 at 11:16 +0100, Murray Cumming wrote: On Mon, 2009-03-02 at 11:00 +0100, Armin Burgmeier wrote: I will include the files into the next installer version. Thanks. Please check if the GTK+ installer has the same problem. If you mean the GTK+ bundle zip

Re: Windows installers for gtkmm development and runtime environments

2009-03-01 Thread Armin Burgmeier
On Sat, 2009-02-28 at 14:26 -0600, Philip Allison wrote: Hullo all, I've been looking at getting a little gtkmm app I wrote up and running on Windows using MinGW, and have run into a few rough edges. Firstly, although the glib-gettextize binary is included, the tool doesn't work, because

Re: GIOmm on windows

2009-02-20 Thread Armin Burgmeier
On Thu, 2009-02-19 at 19:03 +, Pedro Sousa wrote: Hi to everyone, I need to read some files in a application developed for windows OS. Can I use GIOmm for accessing files on windows on windows? I think few functionality such as file monitoring is not (yet?) available on Windows, but

Re: Which control structure is faster?

2009-02-19 Thread Armin Burgmeier
On Thu, 2009-02-19 at 17:11 +0100, Dimitri Holz wrote: Which control structure is faster inside a loop (for, while or do-while)? switch is probably faster because the compiler can use a lookup table. But the compiler maybe optimizes the if version to do the same as the switch version anyway.

Re: using MinGW for Gtkmm on windows

2009-01-20 Thread Armin Burgmeier
On Mon, 2009-01-19 at 19:33 -0800, lovekie wrote: I use the official installer to install the gtkmm, and I only want use MinGW on windows to compile the program.(I don't want install the visual studio or viusal studio express, they are too big.) I can successful compile and link the simple

Re: A typo in win32 installer english.nsh

2009-01-18 Thread Armin Burgmeier
On Sun, 2009-01-18 at 00:56 +1100, Dancefire wrote: Hi, There is a typo in \gtkmm\win32_installer\translations\english.nsh. The patch is attached. There are some strings that are no longer used but still in the translation files, such as the one with the typo you found. I removed those

Re: Simplified Chinese translation for gtkmm win32 installer

2009-01-18 Thread Armin Burgmeier
On Sun, 2009-01-18 at 00:48 +1100, Dancefire wrote: Hi, I finished a Simplified Chinese translation for gtkmm win32 installer. LANG=zh-cn. here is the patch. Thanks. I have committed this. I don't see the Chinese translation when I run the installer on an English Windows system. I suppose

Re: Problem with Gtk::manage in Visual Studio 2008

2009-01-02 Thread Armin Burgmeier
On Sat, 2008-12-20 at 18:42 +0100, Armin Burgmeier wrote: On Sat, 2008-12-20 at 16:55 +0100, klaus triendl wrote: Pedro Sousa schrieb: Yes, I'm using the correct version of the Property Sheet, file gtkmm-vc90-2_4 and gtkmm-vc90-d-2_4 for the Visual Studio 2008. This error happens

Re: Using Gdk::Pixbuf from multiple threads.

2009-01-02 Thread Armin Burgmeier
On Fri, 2009-01-02 at 17:09 +0100, Germán Diago wrote: Hello. I'm trying to scale (make thumbnails) of pictures in a thread pool. But I get random crashes. The program (in the slot that goes to the thread pool) uses Gdk::Pixbuf to scale images. I push a task to the thread pool but I don't

Re: Problems enumerating printers

2009-01-01 Thread Armin Burgmeier
On Tue, 2008-12-30 at 00:09 +0100, Tor Krill wrote: Hi, I have a bit of a newbie problem. Im trying to enumerate printers on a system. Doing so i get a lot off errors. Cut down version of code: --8-- #include iostream

Re: Please wrap GtkObject::destroy signal

2008-12-28 Thread Armin Burgmeier
On Mon, 2008-12-29 at 00:52 +0100, Mathias Hasselmann wrote: Please wrap the GtkObject::destroy signal: The signal is useful to figure out that objects like windows in WINDOW_POPUP mode are destroyed. Those windows are ignored by the window manager and therefore don't receive the

Re: Problem with Gtk::manage in Visual Studio 2008

2008-12-20 Thread Armin Burgmeier
On Sat, 2008-12-20 at 16:55 +0100, klaus triendl wrote: Pedro Sousa schrieb: Yes, I'm using the correct version of the Property Sheet, file gtkmm-vc90-2_4 and gtkmm-vc90-d-2_4 for the Visual Studio 2008. This error happens because one module (exe/dll) allocated memory which is then freed

Re: About Gtk::Bin?

2008-12-14 Thread Armin Burgmeier
On Sun, 2008-12-14 at 13:30 +0100, Simon Fuhrmann wrote: Hi Robert, yes, I changed the code a bit, but with no affect. There seems to be a bug with Gtk::Bin or a reason I don't know. Here is a simplest-possible testcase that confirms that it does not work (at least for me and Zhu): GtkBin

Re: Dynamically adding widgets to HBox created with glade

2008-12-14 Thread Armin Burgmeier
On Wed, 2008-12-10 at 13:00 -0800, kondrara wrote: Hi, I created a dialog with glade. In this dialog, I have a HBox with two widgets, one is the label and the other widget will be determined at the runtime. So, in my code I got the reference to the HBox using get_widget after loading the

  1   2   3   >