Re: GtkSelectionMode

2019-02-13 Thread LRN via gtk-list
On 13.02.2019 20:41, Igor Korot via gtk-list wrote: > Hi, list, > This link: > https://developer.gnome.org/gtk3/stable/gtk3-Standard-Enumerations.html#GtkSelectionMode > has 4 modes for selection, > while this link: > https://developer.gnome.org/gtk2/stable/gtk2-Standard-Enumerations.html#GtkSelec

Re: Win32 WM_NCDESTROY to GDK Window to GTK Widget signal

2018-09-19 Thread LRN via gtk-list
On 19.09.2018 19:40, Michel Donais wrote: > So, the code actually works using append_event, but it might not be the > best solution, as the WM_NCDESTROY event is terminal, so merely appending > an operation for future consideration is probably not the best case. > This got me thinking: why exactl

Re: Win32 WM_NCDESTROY to GDK Window to GTK Widget signal

2018-09-18 Thread LRN via gtk-list
On 18.09.2018 19:38, Michel Donais wrote: > You are right, this is on GTK3. Hopefully, once GTK4 becomes predominant, > it might not be useful to have foreign windows. But TBD! > > The problem is as follows: > >> if ((window != NULL) && (msg->hwnd != GetDesktopWindow ())) >> gdk_window_destr

Re: Win32 WM_NCDESTROY to GDK Window to GTK Widget signal

2018-09-18 Thread LRN via gtk-list
On 18.09.2018 18:59, Michel Donais wrote: > What seems to happen is the WM_NCDESTROY event is being sent out to GDK > because its hierarchy is getting destroyed by Win32, and then, it seems GDK > does the good thing destroying all its structures and pushes the destruction > to all its known childre

Re: gtk_icon_theme_load_icon and GDK_SCALE=2 results in blurry icon

2017-10-03 Thread LRN
On 10/3/2017 4:28 PM, Alexander Shaduri wrote: > > Now matter how I try, I simply cannot get a non-blurry icon. It seems that > GTK+ looks up an icon of size 64, then scales it to 128. I'd like for it to > get a 128-size icon directly. > > Specifying 128 as an argument results in a blurry icon of

Re: config file format in gtk3

2017-09-28 Thread LRN
On 9/28/2017 4:03 PM, José Luis Lafuente wrote: > What I want to do is to customize file chooser dialog. It seems that the > options for that are here: > https://developer.gnome.org/gtk3/stable/GtkFileChooser.html It's easier to read the actual schema[1] used for these settings. > > but I cannot

Re: GTK windows positioning and sizing

2017-09-23 Thread LRN
On 9/20/2017 2:07 PM, Jo Blow wrote: > On windows, GTK is totally fubar'ed. I've spent about 3 days wasting my > life trying to simply save and restore the positions of a window. It should > be as easy as getPosition and setPosition and getSize and resize. It would > be nice if the people that actu

Re: How to get a "traditional" file-chooser

2017-09-15 Thread LRN
file/folder that starts with the letters I just > typed. > Is there any know to turn that instant-search feature off and return > to the more traditional "select on type" mode? > This was discussed a few months ago (June of this year): ebassi: LRN: find-as-you-type is gone,

Re: GTK+ mingw32 dynamic linking conflict (cairo/pangocairo)

2017-09-05 Thread LRN
On 9/5/2017 7:48 PM, Jeffrey Sheen wrote: > Thank you Emmanuele, > > That is the first time I've heard that MinGW binaries (gcc) and the MSVC build > chain are incompatible. It would explain why I have non-functional behaviour > in > my application. > > This article on the MinGW website indicate

Re: Non-blocking dialog

2017-08-09 Thread LRN
On 8/9/2017 11:58 PM, Jim Heald wrote: > Hello there! > > I'm writing a GTK+ application in C. In my application I'm running two > commands > that take a bit of time; in order to not make it appear that the program has > just frozen, I am wanting to do the following: > > 1) run the dialog, which

Re: g_io_channel_win32_poll() Problem on Windows

2017-08-02 Thread LRN
On 8/2/2017 7:37 PM, LRN wrote: > On 7/27/2017 1:51 PM, mualloc . wrote: >> arv_gv_discover_socket_list_send_discover_packet(socket_list); >> >> >> do{ >> >> #ifdef_WIN32 >> >> // g_io_channel_win32_make _pollfd() documentation says call this >

Re: g_io_channel_win32_poll() Problem on Windows

2017-08-02 Thread LRN
On 7/27/2017 1:51 PM, mualloc . wrote: > arv_gv_discover_socket_list_send_discover_packet(socket_list); > > > do{ > > #ifdef_WIN32 > > // g_io_channel_win32_make _pollfd() documentation says call this > > if(g_io_channel_win32_poll(socket_list->poll_fds,socket_list->n_sockets,ARV_GV_INTERFACE_

Re: Gtk tool-bar running icon under MS-Windows

2017-05-25 Thread LRN
On 5/26/2017 6:05 AM, John Woodsman wrote: > When running a Gtk program under MS-Windows, there is a little icon that > appears in the tool-tray bar at the bottom of the screen - one for each > program > that is running. > > Major applications like Word or Chrome have their own unique logos. >

Re: Glade architecture change

2017-03-03 Thread LRN
On 04.03.2017 6:20, Michael Torrie wrote: > On 03/03/2017 07:16 AM, LRN wrote: >> Does this make sense? Was this already considered during previous Glade >> rewrites? If yes, why was it discarded? Thoughts? > > I'm not sure GTK+'s architecture would even allow glad

Glade architecture change

2017-03-03 Thread LRN
Yet another report of Glade crashing prompted me to think about a way to fix this, as i've experienced something similar. I've also looked at Glade source code, and didn't really understand it all that well (which prevented me from fixing a bug that i wanted to fix). Here's my pitch: take the "pre

Re: using gdk_win32_window_foreign_new_for_display

2017-01-20 Thread LRN
On 07.01.2017 18:54, Tilman K. wrote: > Hey guys, > > I would like to develop the GUI for a VST synth with gtk. I need to > embed a gtk gui inside a win32 HWND parent window. I think > "gdk_win32_window_foreign_new_for_display" could be the right function > to create a GdkWindow that is embedde

Re: using gdk_win32_window_foreign_new_for_display

2017-01-12 Thread LRN
On 12.01.2017 21:41, Tilman K. wrote: > Am 12.01.2017 um 17:11 schrieb LRN: >> On 12.01.2017 18:20, Tilman K. wrote: >>> Hey guys, >>> >>> I would like to develop the GUI for a VST synth with gtk. I need to >>> embed a gtk g

Re: using gdk_win32_window_foreign_new_for_display

2017-01-12 Thread LRN
On 12.01.2017 18:20, Tilman K. wrote: > Hey guys, > > I would like to develop the GUI for a VST synth with gtk. I need to > embed a gtk gui inside a win32 HWND parent window. I think > "gdk_win32_window_foreign_new_for_display" could be the right function > to create a GdkWindow that is embedde

Re: Nim GTK3 editor

2016-07-10 Thread LRN
On 10.07.2016 18:03, Stefan Salewski wrote: > On Sun, 2016-07-10 at 15:54 +0200, Stefan Salewski wrote: >> Maybe another one, but less important: I am using GSettings -- for >> testing if the editor would work fine on a fresh install, I would >> like >> to reset all modifications done by my progra

Re: SIGSEGV in g_utf8_collate on Windows

2016-06-30 Thread LRN
On 20.06.2016 15:56, Sebastian Faubel wrote: > Hello Everybody, > > in the upcoming Inkscape 0.92 release, the project has decided to switch > from the current autotools build system to CMake. Because there is a > large > user base on the Windows platform, I am currently trying to get the > progra

Re: Announcement of Visual Studio 2015 projects and solutions for Gtkmm and GTK+

2015-11-27 Thread LRN
On 27.11.2015 11:27, codekiddy wrote: > On Fri, Nov 27, 2015 at 9:15 AM, LRN wrote: >> On 27.11.2015 9:59, codekiddy wrote: >>> compile GTK+, Gtkmm, all it's dependencies >>> solely by using Visual Studio, as well as few other popular "hard to >>>

Re: Announcement of Visual Studio 2015 projects and solutions for Gtkmm and GTK+

2015-11-27 Thread LRN
On 27.11.2015 9:59, codekiddy wrote: > compile GTK+, Gtkmm, all it's dependencies > solely by using Visual Studio, as well as few other popular "hard to build" > libraries. Is there a particular reason to use MSVS as-is instead of using a multi-toolchain buildsystem (such as CMake) with the MS too

Re: problem when debug glib source code with gdb

2015-11-23 Thread LRN
On 23.11.2015 21:27, jcup...@gmail.com wrote: >>Dear friend, Recently I am curious about how glib works, so I want to >> debug its source code with gdb. But I got stuck... >> >> These are steps I followed, after the source code is downloaded: >> 1) ./configure --enable-debug=yes > > The --ena

Re: Can't read stdout of bash with GSubprocess on MSYS2

2015-09-28 Thread LRN
On 28.09.2015 22:07, Earnie wrote: > On 9/27/2015 10:01 PM, Gang Chen wrote: >> Hi, >> I'm writing a GTK+ application with MINGW-W64, which spawns a subprocess >> running bash to execute some commands with GSubprocess and reads stdout >> of bash (installed from MSYS2). I found that if compiled with

Re: Can't read stdout of bash with GSubprocess on MSYS2

2015-09-27 Thread LRN
On 28.09.2015 5:01, Gang Chen wrote: > Hi, > I'm writing a GTK+ application with MINGW-W64, which spawns a subprocess > running bash to execute some commands with GSubprocess and reads stdout of > bash (installed from MSYS2). I found that if compiled without "-mwindows" > compilation option the mai

Re: Widget descriptors as unions

2015-08-29 Thread LRN
On 29.08.2015 11:46, Florian Pelz wrote: > On 08/29/2015 10:39 AM, Jean-Marie Delapierre wrote: >> I have explained (I hope in a clear way, but I begin to doubt about it) >> that the unions I suggest only own pointers, not child objects as you >> say in your answer. > > I think it is clear, but yo

Re: Using GTK+ in M$ Windows

2015-07-30 Thread LRN
On 24.07.2015 21:20, Dmitry Golovin wrote: > I tried adding gtk-theme-name=ms-windows to settings.ini, but it didn't > change anything. Probably I'm missing something. Yes. You're missing a w32 theme. At some point makefiles were altered to not to install it (i think it was a side-effect of some

Re: Outdated win32 bundle

2015-06-16 Thread LRN
On 11.06.2015 15:44, anatoly techtonik wrote: > On Mon, Jun 8, 2015 at 9:22 PM, Emmanuele Bassi wrote: >> Developers using the G* core platform libraries on Windows are >> strongly encouraged to use the MSYS2 distribution: >> >> https://msys2.github.io/ > > Like Git? Ship 200Mb of "additional va

Re: Gtk-3.14.3 on Windows: icon rendering issues

2015-05-19 Thread LRN
t;>>>> On Wed, May 20, 2015 at 12:08 AM, LRN wrote: >>>>>> On 19.05.2015 15:44, Daniel Kasak wrote: >>>>>>> On Tue, May 19, 2015 at 9:45 PM, LRN wrote: >>>>>>>> On 19.05.2015 14:44, LRN wrote: >>>>>>>

Re: Gtk-3.14.3 on Windows: icon rendering issues

2015-05-19 Thread LRN
On 19.05.2015 15:44, Daniel Kasak wrote: > On Tue, May 19, 2015 at 9:45 PM, LRN wrote: >> On 19.05.2015 14:44, LRN wrote: >>> On 19.05.2015 14:34, Daniel Kasak wrote: >>>> On Sun, Oct 19, 2014 at 10:17 PM, Emmanuele Bassi wrote: >>>>> On 19 October

Re: Gtk-3.14.3 on Windows: icon rendering issues

2015-05-19 Thread LRN
On 19.05.2015 14:44, LRN wrote: > On 19.05.2015 14:34, Daniel Kasak wrote: >> On Sun, Oct 19, 2014 at 10:17 PM, Emmanuele Bassi wrote: >>> On 19 October 2014 03:42, Daniel Kasak wrote: >>>> On Sat, Oct 18, 2014 at 10:45 PM, Kalev Lember wrote: >>>>&g

Re: Gtk-3.14.3 on Windows: icon rendering issues

2015-05-19 Thread LRN
On 19.05.2015 14:34, Daniel Kasak wrote: > On Sun, Oct 19, 2014 at 10:17 PM, Emmanuele Bassi wrote: >> On 19 October 2014 03:42, Daniel Kasak wrote: >>> On Sat, Oct 18, 2014 at 10:45 PM, Kalev Lember wrote: On 10/18/2014 01:25 PM, Daniel Kasak wrote: > Why are some icons not being rendered

Re: GTK+ 3.16.0 released

2015-03-24 Thread LRN
On 24.03.2015 14:53, Emmanuele Bassi wrote: > Hi; > > On 24 March 2015 at 11:34, LRN wrote: > >>>> Provided that libepoxy is appropriately-patched to consider OpenGL 1.1 to >>>> be >>>> the core implementation provided by opengl32.dll >>

Re: GTK+ 3.16.0 released

2015-03-24 Thread LRN
On 24.03.2015 14:25, Emmanuele Bassi wrote: > On 24 March 2015 at 10:45, LRN wrote: >>>> * GDK supports rendering windows using OpenGL; currently >>>>this is implemented for X11 and Wayland using libepoxy >>>> >>>> * GtkGLArea is a new wi

Re: GTK+ 3.16.0 released

2015-03-24 Thread LRN
On 24.03.2015 13:15, Fan Chun-wei wrote: > Matthias Clasen 於 2015/3/23 10:53 寫道: >> GTK+ 3.16.0 is now available for download at: >> ... >> What's new in 3.16 >> == >> >> Major new features include: >> >> * GDK supports rendering windows using OpenGL; currently >>this is impleme

Re: GTK built-in color names (eg: "green", "purple")

2015-02-05 Thread LRN
hi; On 30.01.2015 19:53, John W wrote: > Is there a way to re-define the RGB values of built-in color names in GTK? no. > So back to the point: is there any way to change GTK's mapping for color > names? > Or perhaps have GTK use X11 color names? > GTK+ parses CSS-like color strings like 'rgb

Re:

2014-10-18 Thread LRN
On 18.10.2014 13:03, Ayushi Mrigen wrote: > Hi, > I started working with gtk+. I cloned gtk+ the repository from git, but > config.h is missing. And hence, I am unable to compile. How can I solve > this? > Run autogen.sh to generate configure script from configure.ac, then run configure script to

Re: GtkFileChooserDialog question

2014-09-18 Thread LRN
On 17.09.2014 13:49, Igor Korot wrote: > David, > > On Tue, Sep 16, 2014 at 12:58 AM, David Nečas wrote: >> >> Please reply to the list. >> >> On Tue, Sep 16, 2014 at 12:47:26AM -0700, Igor Korot wrote: Yes, you need to right-click in the file list. Unfortunately, the discoverability of

Re: gtk+-1.2.10: i686-pc-mingw32-gcc: error: unrecognized command line option '-rdynamic'

2014-08-20 Thread LRN
On 20.08.2014 10:29, YuGiOhJCJ Mailing-List wrote: > Hello, > > I am on a Linux 32 bit operating system (Slackware 14.1) and I have a > cross-compiler based on: > - binutils-2.24.51 > - gcc-4.9.1 > - mingwrt-lib-3.20.2 > - w32api-3.17.2 > > When I try to cross-compile a GTK+ application I do: >

Re: GTK FileChooserButton crashes - No GSetting schemas

2014-08-13 Thread LRN
On 13.08.2014 16:08, darekg11 wrote: > Hi guys I have a following problem - never had it before with GTK 2.x but it > occurs with latest bundle: > > When I use following line: > > widget = gtk_file_chooser_button_new("Choose > directory\0",GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER); > > > Applica

Re: gtk3 (3.13.5) under windows with semi transparent window border

2014-08-07 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07.08.2014 13:24, Andrea Zagli wrote: > i'm trying gtk+3 3.13.5 under windows, with msys2 > > adwaita theme looks very nice under windows; and at this point gtk+ seems > very stable also under windows > > but i got windows with semi transparent bo

Re: The theme of GTK+ 3.13.3 seems not right

2014-08-01 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03.07.2014 8:40, qlb1234 wrote: > Dear ladies and gentlemen, > > Recently I've migrated my GTK+ programs from 3.13.2 to 3.13.3. And this > is what it looks like. I'm showing you gtk3-demo.exe. > > This is what 3.13.3 looks like. > > > And this i

Re: Cross compile errors with i686-w64-mingw32

2014-07-28 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 29.07.2014 0:10, Mario Reichel wrote: > Am 28.07.2014 19:33, schrieb LRN: >> On 28.07.2014 20:42, Mario Reichel wrote: >>> Am 28.07.2014 17:51, schrieb LRN: >>>> On 28.07.2014 19:19, Mario Reichel wrote: >>&

Re: Cross compile errors with i686-w64-mingw32

2014-07-28 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 28.07.2014 20:42, Mario Reichel wrote: > Am 28.07.2014 17:51, schrieb LRN: >> On 28.07.2014 19:19, Mario Reichel wrote: >>> After this i tried to compile gtk+ 3.13.5 with ./configure >>> --host=i686-w64-mingw32 --pre

Re: Cross compile errors with i686-w64-mingw32

2014-07-28 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 28.07.2014 19:19, Mario Reichel wrote: > After this i tried to compile gtk+ 3.13.5 with ./configure > --host=i686-w64-mingw32 --prefix=/home/mario/build32 and environment > variables CC, CXX und PKG_CONFIG_LIBDIR set. > > On make i get the follow

Re: To compile glib on MinGW is not easy

2014-05-30 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 30.05.2014 17:09, Florian HEGRON wrote: >>> I compiled glib on my MinGW installation ! It's unbelievable. >>> >>> I plaisant but this is because I try since many days (weeks). >>> >>> >>> My different problems (with glib 2.41.0) : >>> >>> - Ther

Re: To compile glib on MinGW is not easy

2014-05-30 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 30.05.2014 15:51, Florian HEGRON wrote: > Hello, > > I compiled glib on my MinGW installation ! It's unbelievable. > > I plaisant but this is because I try since many days (weeks). > > > My different problems (with glib 2.41.0) : > > - There is

Re: A bug or a screw up?

2014-05-07 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07.05.2014 17:46, Chris Moller wrote: > On 05/07/14 09:30, LRN wrote: >> On 07.05.2014 17:22, Chris Moller wrote: >>> I just did a good-size upgrade I'd been putting off for too long that >>> took me from GTK 3.2 to

Re: A bug or a screw up?

2014-05-07 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07.05.2014 17:22, Chris Moller wrote: > I just did a good-size upgrade I'd been putting off for too long that took > me from GTK 3.2 to GTK 3.10.8, and some stuff that used to work doesn't > any more: > > Basically, I have a window that contains >

Re: gtk3 win32 customize default theme

2014-05-07 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07.05.2014 13:34, Andrea Zagli wrote: > how can i customize the default win32 theme without rebuilt gtk3? > The same way you change GTK+-3.x theme on other platforms. Edit %LOCALAPPDATA%/gtk-3.0/gtk.css Note that this will *add* to the default the

Re: G-O-I under MinGW

2014-04-16 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 16.04.2014 19:48, Martin Schlemmer wrote: > On 2014/04/16 at 02:57 PM, LRN wrote: >> On 16.04.2014 16:43, Martin Schlemmer wrote: >>> At some point LRN wrote: >>>> gobject-introspection might fail to generate stuff

Re: Sbuild update 4.1.1

2014-04-16 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 16.04.2014 16:43, Martin Schlemmer wrote: > Hi, > >> gobject-introspection might fail to generate stuff (failure at >> shutil.rmtree() in gdumpparser.py), especially on slow machines. >> Re-run the build from the last step. No new insights into th

Sbuild update 4.1.1

2014-03-22 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 S[mart|tupid] build[1] got a minjor update = About = sbuild is a set of scripts that build various free software packages for Windows from the source, starting with a GCC toolchain (cross-compiled) and MSYS2 core (cross-compiled), and ending with var

Re: Gtk3, Windows, themes

2014-03-01 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02.03.2014 4:46, Daniel Kasak wrote: > On Sun, Mar 2, 2014 at 12:10 AM, LRN wrote: >> On 01.03.2014 16:50, Daniel Kasak wrote: >>> On 01/03/2014 10:54 PM, LRN wrote: >>>> On 01.03.2014 3:54, Daniel Kasak wrote: >&

Re: Gtk3, Windows, themes

2014-03-01 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01.03.2014 16:50, Daniel Kasak wrote: > On 01/03/2014 10:54 PM, LRN wrote: >> On 01.03.2014 3:54, Daniel Kasak wrote: >>> I'm looking to port some apps ( Gtk2-Perl ) to Gtk3 ( ie >>> Gtk3-Perl ), and I'm won

Re: Gtk3, Windows, themes

2014-03-01 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01.03.2014 3:54, Daniel Kasak wrote: > Hi all. > > I'm looking to port some apps ( Gtk2-Perl ) to Gtk3 ( ie Gtk3-Perl > ), and I'm wondering if anyone has tackled building themes for > Windows? I know of the Windows Gtk3 binaries ... great :) But t

Requesting GtkIconCache documentation

2014-01-23 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Specifically, i'd like to know how find_image_offset() works. Right now gtk+-3.11 icon loading does not work for me, only built-in icons are shown. I'm debugging the whole process of loading icons, and currently i'm stuck at find_image_offset(). It ge

Re: pkg.m4 missing in pkg-config v0.28 tool download for GTK+ 3.x on win32

2014-01-23 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 23.01.2014 12:07, Tarnyko wrote: > Legorol writes: >> On the Windows 32-bit download page >> (http://www.gtk.org/download/win32.php), under the GTK+ 3.x >> heading, various "other third party software" are listed. One of >> those is pkg-config vers

Re: ATK dependency

2013-07-13 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 13.07.2013 18:21, Kemin Zhou wrote: > My RedHat 6.4 distribution is missing a lots of staff, > and the yum program is disabled by the company. The IT people make sure > that this computer cannot be updated by any simple means. I have to use > the do

Re: gtk+ 3.2+ uuid conflicting when build by mingw-w64

2013-05-04 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04.05.2013 19:56, Dongsheng Song wrote: > In the gtk/Makefile.am file, gtk+ forced link libuuid: > > libgtk_3_la_LDFLAGS += -Wl,-luuid > > But in the file gdk/win32/gdkdnd-win32.c, gtk+ forced uuid initialization: > > #define INITGUID > > Then w

Re: GLib/GList on Windows XP

2012-08-31 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 31.08.2012 20:56, Gary Dumer wrote: > Hi, > > I'm having a problem that may be the result of my inexperience with > GLib or it could be an issue with Glib on Windows XP. > > I'm having several problems. The first is with g_list_index always > retu

Re: main_interation and GetMessage

2012-08-16 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 16.08.2012 15:08, Henrik Genssen wrote: >> reply to message: date: 16.08.2012 12:44:49 from: "LRN" >> to: gtk-list@gnome.org subject: Re: >> main_interation and GetMessage >> >> On 16.08.2012 13:16, Henr

Re: main_interation and GetMessage

2012-08-16 Thread LRN
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 16.08.2012 13:16, Henrik Genssen wrote: > My app so far uses main_interation(true) as main message loop. Now > I need to prefilter messages for IOleInPlaceActiveObject of > Internet Explorer to feed its TranslateAccelerator() function. > > Can I so

g_build_filename() documentation is misleading

2010-05-04 Thread LRN
g_build_filename() documentation claims that: On Windows, it takes into account that either the backslash (|\)| or slash (|/|) can be used as separator in filenames, but otherwise behaves as on Unix. When file pathname separators need to be inserted, the one that last previously occurred in the pa

Re: gtk on win32

2010-03-30 Thread LRN
On 30.03.2010 11:26, John Emmas wrote: > Certain things like XP > themes don't really work (as others have pointed out) and it's a great shame > that bug reports aren't dealt with more conscientiously. Having said that, > actual bugs are relatively few in number and GTK+ does have its own theming

Re: g_assert vs. g_return_if_fail

2010-01-20 Thread LRN
On 21.01.2010 3:14, Martin Kalbfuß wrote: > OK, Many thanks. That's a good reason not to use g_assert, in such a > place. > > But when the caller should have the ability to handle the error, why not > use GError? Isn't it exactly doing this? Indicate an error, but don't > abort the program on it's

Re: g_assert vs. g_return_if_fail

2010-01-20 Thread LRN
On 21.01.2010 0:38, Jiří Zárevúcky wrote: > Behdad Esfahbod píše v St 20. 01. 2010 v 13:18 -0500: > >> On 01/20/2010 02:03 PM, Martin Kalbfuß wrote: >> >>> Thanks, >>> >>> But why is it a disastrous idea? >>> >>> When It's a clear programming error, why not abort the program with >>> g_asse

Re: What are eggs?

2010-01-01 Thread LRN
On 01.01.2010 12:31, Dov Grobgeld wrote: > While trying to make a up a family for a new widget, I got reminded of > seeing the term "egg" over the years in relation to gtk, but I never really > understood what it means, who came up with the concept, and how it is > "supposed" to be used? > > My gue

Re: GdkPixbuf-WARNING:cannot open pixbuf loader module file(on Windows)

2010-01-01 Thread LRN
On 01.01.2010 6:43, Todong Ma wrote: > >>> Normal way of installing GTK+ on Windows is to put it *somewhere* as-is >>> (that is, with all /bin, /etc, /lib and other subdirectories >>> residing in >>> one directory) and add /bin subdirectory to system PATH. >>> >> >> Or, if you have the applica

Re: GdkPixbuf-WARNING:cannot open pixbuf loader module file(on Windows)

2009-12-31 Thread LRN
On 31.12.2009 16:42, Todong Ma wrote: > LRN wrote: >> On 31.12.2009 16:05, Todong Ma wrote: >> >>> Hi,everyone. >>> >>> I want to write a program to display an image. >>> This is my code: >>> >>> /#include &g

Re: GdkPixbuf-WARNING:cannot open pixbuf loader module file(on Windows)

2009-12-31 Thread LRN
On 31.12.2009 16:05, Todong Ma wrote: > Hi,everyone. > > I want to write a program to display an image. > This is my code: > > /#include > > int main(int argc,char **argv){ > >gtk_init(&argc,&argv); > >GtkWidget *window = gtk_window_new(GTK_WINDOW_TOPLEVEL); >GtkWidget *image = gtk_ima

Coolbar (Rebar) in GTK+

2009-12-18 Thread LRN
Is there a GTK+ widget that works like a coolbar (rebar)? ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list