Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread James Cameron
On Mon, May 07, 2018 at 05:03:40PM -0500, Igor Korot wrote: > James, > > On Mon, May 7, 2018 at 4:46 PM, James Cameron wrote: > > On Mon, May 07, 2018 at 04:27:57PM -0500, Igor Korot wrote: > >> Paul et al, > >> Any idea how to configure FVWM to not to give focus to xterm if

Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread Igor Korot
James, On Mon, May 7, 2018 at 4:46 PM, James Cameron wrote: > On Mon, May 07, 2018 at 04:27:57PM -0500, Igor Korot wrote: >> Paul et al, >> Any idea how to configure FVWM to not to give focus to xterm if one >> specific window is displayed? > > You might ask on an fvwm mailing

Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread James Cameron
On Mon, May 07, 2018 at 04:27:57PM -0500, Igor Korot wrote: > Paul et al, > Any idea how to configure FVWM to not to give focus to xterm if one > specific window is displayed? You might ask on an fvwm mailing list, but fvwm does have a NeverFocus method that can be applied to an application such

Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread Igor Korot
Paul et al, Any idea how to configure FVWM to not to give focus to xterm if one specific window is displayed? I tried: [code] Key Tab A M WindowList("!xterm") [/code] but it doesn't work. Thank you. On Mon, May 7, 2018 at 12:44 PM, Paul Davis wrote: > the window

Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread Paul Davis
the window manager can intervene to catch more or less any key combinations the user has told it to be interested in. if the user told it use Alt-Tab for focus switching, it will catch that. you can't stop it. On Mon, May 7, 2018 at 12:52 PM, Igor Korot wrote: > Hi, Paul, >

Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread Igor Korot
Hi, Paul, On Mon, May 7, 2018 at 11:42 AM, Paul Davis wrote: > If there is a window manager (and there just about always is), you can't > stop it from doing what it is configured to do. You're just an application, > and it takes higher priority managing window events

Re: Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread Paul Davis
If there is a window manager (and there just about always is), you can't stop it from doing what it is configured to do. You're just an application, and it takes higher priority managing window events than you. On Mon, May 7, 2018 at 12:01 PM, Igor Korot wrote: > Hi, ALL, >

Is it possible to catch ALT+TAB and do nothing

2018-05-07 Thread Igor Korot
Hi, ALL, Is it possible to catch the ALT+TAB when one particular window is displayed and do nothing, i.e. not switch to a different window? We have a program which displays a full sized window without the title. Its role is to Lock screen" - user should not be able to do anything until (s)he

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Matthew A. Postiff
Have you tried https://www.kdevelop.org/? I have been using it lately and like it for code editing and compilation both on Linux and Windows. It provides more info about the source code than emacs tags does. I haven't gotten the hang of debugging with KDevelop, so I still debug in

Re: Problems with gio_drive and gio_volume

2018-05-07 Thread Philip Withnall
On Sun, 2018-05-06 at 12:22 +0200, rastersoft wrote: > Hi all: > > I've been using GIO's Drive and Volume to detect the available > external > disks in an app (cronopete) and it worked fine for me; but some > people > referred troubles: some of them says their USB disks aren't > detected. >

IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread pspgen
If you do not want to cross-compile then you CAN use code blocks to develop GTK+3 based applications. You don't anymore need the project creation wizzard. Especially since GTK+3.12 or so. Just add the search directories and add `pkg-config --libs gtk+-3.0` into the linker additional options.

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Nicola Fontana
Il Mon, 7 May 2018 09:30:13 +0200 arkkimede scrisse: > ... > Now I would migrate on WIndows 10 by means of MSYS2. > > There is an IDE (better if open source) that I can use instean to follow to > use vi? > ... Hi, it seems to me a step backward: nothing can beat a

Re: Bug in gobject-introspection

2018-05-07 Thread Nicola Fontana
Il Sun, 6 May 2018 09:47:05 -0300 Colomban Wendling scrisse: > Le 06/05/2018 à 09:05, Nicola Fontana a écrit : > > Il Sat, 07 Apr 2018 06:25:52 +0200 Arun Gurung > > scrisse: > > > >> Hi, > >> > >> I have

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Dov Grobgeld
Why don't you cross compile from Linux to Windows? I have for years maintained several gtk based applications, including the building of installers for windows through make-nsis, and done everything from Linux. Regards, Dov On Mon, May 7, 2018 at 10:30 AM, arkkimede wrote:

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Igor Chetverovod
For GTK app development I am using Qt Creator (community edition) for Linux and Win.   Also it has vi mode. Отправлено с моего смартфона BlackBerry 10.   Исходное сообщение   От: arkkimede Отправлено: понедельник, 7 мая 2018 г., 10:30 Кому: gtk-app-devel-list list Тема: IDE to develop app with

IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread arkkimede
Hi! I need an advice: I written apps on Linux with GTK3 using essentially vi and Makefile to build the project splitten in multiple C files with the corresponding H file. Now I would migrate on WIndows 10 by means of MSYS2. There is an IDE (better if open source) that I can use instean to follow