Re: Extra space after textview (cross-posted from gtk-app-devel-list)

2018-10-25 Thread Matthew A. Postiff via gtk-list
On 25/10/18 12:47, Matthew A. Postiff via gtk-list wrote: Hi, I have a scrolledwindow+vbox with multiple textviews one after the other strung together. Built against gtk2, things appear fine. I&

Extra space after textview (cross-posted from gtk-app-devel-list)

2018-10-25 Thread Matthew A. Postiff via gtk-list
Hi, I have a scrolledwindow+vbox with multiple textviews one after the other strung together. Built against gtk2, things appear fine. I'm trying to upgrade to gtk3, and have a problem. In GTK3, extra blank space appears after each textview when it is initially created. As

Re: Question about porting from gtk 2.x to 4.0

2018-10-02 Thread Matthew A. Postiff via gtk-list
I am in the midst of porting an app from gtk2 to gtk3. Most of it has been easy, but there are a few "issues" that are not easy. I haven't even ventured to look at gtk4 yet. Is it even released yet? So, from that standpoint of ignorance...I would recommend you to

gtk_widget_add_accelerator failure

2018-05-10 Thread Matthew Allen
7;m doing wrong? Regards Matthew ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-list

GTK help wanted?

2018-01-30 Thread Matthew A. Postiff
Hi, Where's a good place to hire a gtk programmer? I need help upgrading libwebkit in a gtk program...and eventually upgrading gtk. Thanks, Matt ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.or

[glib] Android port

2016-08-10 Thread Brown, Matthew
I have a project running on various Linux environments which I need to port to Android. This project depends on glib 2.32 or newer and will need to run on at least Android API 19. I've attempted to build from the latest stable source and hit well-known compile errors related to the bionic c libr

Print Dialog Password Encryption

2016-02-24 Thread Matthew Morikawa
stop the User's password from being cached? Thanks, Matthew Morikawa ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-list

GTK Widget Focus Events

2011-12-26 Thread Matthew Hague
Hi, Apologies if this is an overly technical question for the list. I'm having an issue with Evince, which sometimes fails to regain keyboard focus when switching desktops back and forth. I've traced the problem to the following: 1) Evince, on receiving a key press event, checks that the "

Re: flash files

2010-05-03 Thread Matthew Bucknall
Gnash might be suitable for your purposes. I don't know whether it can be embedded into a GTK+ application or not. On Mon, 2010-05-03 at 14:37 +0300, maxim maxim wrote: > how i can to play in gtk a flash files (.swf)? > ___ > gtk-list mailing list > gtk

Re: Nesting gtk_main ?

2010-01-30 Thread Matthew Bucknall
Modal dialog boxes etc. On Sat, 2010-01-30 at 23:25 +0530, Siddu wrote: > Hi all , > > Can some one tell me what is the use of nesting gtk_main calls or > rather calling them recursively ? > > -- > Regards, > ~Sid~ > I have never met a man so ignorant that i couldn't learn something > from him

Re: regex-test fails in 2.22.4

2010-01-10 Thread Matthew Burgess
Sergei Steshenko wrote: It may as well be a bug in 'glib'. I.e. PCRE functionality/interface could change, and 'glib' folks may be out of sync. Formally speaking, it's a 'glib' bug in any case - its 'configure' should check for compatible version of PCRE. Actually, it looks as if it may be si

Re: regex-test fails in 2.22.4

2010-01-10 Thread Matthew Burgess
Sergei Steshenko wrote: partial matching (string: "aa", pattern: "a+b") failed (got 1, expected: 0) 466 tests passed, 1 failed I vaguely remember that not the latest PCRE should not be used, or, you can put it another way - the latest PCRE breaks 'make check' of 'glib'. I am using pcre-

regex-test fails in 2.22.4

2010-01-09 Thread Matthew Burgess
Hi, Running 'make check' on glib-2.22.4 shows that 'regex-test' fails. I ran './regex-test --noisy | grep failed' that shows the following: partial matching (string: "aa", pattern: "a+b") failed (got 1, expected: 0) 466 tests passed, 1 failed Is there anything I can do to debug why t

Re: simple compass widget available

2010-01-09 Thread Matthew Bucknall
On Sat, 2010-01-09 at 12:11 -0500, Pierre-Luc Beaudoin wrote: > You can also try to push it for inclusion in Gtk+ itself since most "3rd > party Gtk+ widget" libraries have been killed or merged. Publish the > code (as a git branch or patches on bugs.gnome.org) and try to get a Gtk > + maintainer

Re: Custom container + Child type with interface

2009-12-20 Thread Matthew Bucknall
20, 2009 at 07:30:42PM +, Matthew Bucknall wrote: > > Seems to me, it should be perfectly acceptable to define a property that > > can be set at construction, but then only read during the rest of the > > owning object's lifetime (i.e. something like G_PARAM_READABLE | > &g

Re: Custom container + Child type with interface

2009-12-20 Thread Matthew Bucknall
as I'll have to get around loosing property change signals I would have otherwise used. Thanks, Matt. On Sun, 2009-12-20 at 19:22 +0100, David Nečas wrote: > On Sun, Dec 20, 2009 at 04:43:57PM +, Matthew Bucknall wrote: > > Next question - The interface I have defined basically just

Re: Fwd: GTK+ is real object oriented?

2009-12-20 Thread Matthew Bucknall
I think you're making way to strong a connection between language syntax and programming paradigms. You're confusing 'what' with 'how'. GObject, on which GTK+ is built provides all the key OOP properties and GTK+ uses them to maximum effect: Abstraction Polymorphism Inheritance Encapsulation C w

Re: GTK+ is real object oriented?

2009-12-20 Thread Matthew Bucknall
Depends on your definition of a 'fake object oriented environment'. GTK+ uses GObject to provide its object model: http://library.gnome.org/devel/gobject/stable/ So, in short, most would say yes it is 'really' object oriented. Because C provides very little in the way of syntactic support for OOP

Re: Custom container + Child type with interface

2009-12-20 Thread Matthew Bucknall
rived from other state information)? Should I just omit setters for those implementers and use G_OBJECT_WARN_INVALID_PROPERTY_ID() if something tries to set the relevant properties? Matt. On Sun, 2009-12-20 at 16:14 +0100, David Nečas wrote: > On Sun, Dec 20, 2009 at 01:57:06PM +, Matthew

Custom container + Child type with interface

2009-12-20 Thread Matthew Bucknall
I'm implementing a custom container widget which needs to only accept child widgets which derive from GtkWidget (obviously) but also implement a custom Interface called GpanesPanel. I'm not sure how to enforce this rule within my code's API. What type should the container's child_type() method ret

Re: Compiling gtk libraries and gcc

2009-09-18 Thread Matthew Talbert
me engine rather than the one you're used to seeing. That doesn't mean that there is anything wrong, just that you need to install a theme + engine for whatever you want it to look like. I don't know if any other themes are available by default, but you can specify the theme by

Windows Build Question

2007-04-11 Thread Paul Matthew Bombach
Hello All: I'm trying to build gtk under windows using MinGW. I've encountered a strange error and was wondering if anyone knows a fix for it. The following minimalistic makefile file: > pmb: > glib-mkenums --fprod "/* enumerations from \"@[EMAIL PROTECTED]" > */\n" gdkrgb.h Produces

Re: Compiling with MinGW

2006-08-04 Thread matthew
.1/libtool --version ltmain.sh (GNU libtool) 1.5.18 (1.1220.2.245 2005/05/16 08:55:27) Copyright (C) 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Matthew _

Compiling with MinGW

2006-08-04 Thread matthew
libuniname make[3]: Entering directory `/home/matthew/tmp/wv/gettext-0.15/ gettext-tools/libuniname' /bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -Lc:/progra~1/wv -Wl,--disable-auto-import -o test-names.exe test-names.o libuniname.a ../lib/libgettextlib.la gcc -g -O2 -Wl,--disable

Constructor Properties in GObject

2005-09-14 Thread Matthew F. Barnes
the GObject construction phase. It would be ideal if GObject did these checks for me, so that all I'd have to do is specify which "G_PARAM_CONSTRUCT" properties I want to be required. Any advice? Matthew Barnes [EMAIL PROTECTED] ___

RE: gtk+ 2.4.4 on Solaris 8?

2004-08-02 Thread matthew . dreezer
Title: RE: gtk+ 2.4.4 on Solaris 8? Hi John, I had a similar problem under HP-UX. After much hunting around I found the source code for render, xrender and Xft. Source code for render and Xrender can be found at http://freedesktop.org/~xlibs/release.  Xft can be found at http://fontconfig.

Running GTK in non-default visual

2004-07-21 Thread matthew . dreezer
Title: Running GTK in non-default visual Hi, I am on a project that is looking to use the wxWidgets toolkit for cross platform software development. wxWidgets uses GTK2 when running under Linux or HP-UX. On HP-UX our current application runs in an 8 bit visual. This is mainly because we are

GtkAction - no gtk_action_set_sensitive()?

2004-03-28 Thread Matthew Walton
erty, but given that there's a gtk_action_get_sensitive(), I'm surprised to find that there isn't one for setting sensitivity. Am I barking up entirely the wrong tree here? Obviously gtkmm can provide set_sensitive quite easily, but we were wondering if there was a particular reason w

RE: Where is product support of www.mcp.com

2003-03-12 Thread Childers, Matthew
I'm sorry, the link I posted earlier is not right. I mis-read the name of your book. It looks to me like mcp.com is down right now. I can't access it either. I would give it a little time and see if it comes back up. -Original Message- From: edward hage [mailto:[EMAIL PROTECTED] Sen

RE: Where is product support of www.mcp.com

2003-03-12 Thread Childers, Matthew
I believe this is the page for your book, it says you can download the source from ftp.gnome.org. http://www106.pair.com/rhp/gnome-app-devel.html Matt -Original Message- From: edward hage [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 3:04 PM To: [EMAIL PROTECTED] Subject: W

GtkOptionMenu

2003-01-08 Thread Matthew Metnetsky
I was wondering if someone could give me an example of an option menu's signal that is called when the user selects a new option from the list. I have the option menu loaded and viewing correctly, but when I try using the "changed" signal I get the following error: Gtk-WARNING **: gtk_

RE: glib request

2002-04-26 Thread Campbell, Matthew A
Can MinGW even create DLLs? I didn't know gcc could output shared objects in the DLL specification. It'd be really cool if it could... > -Original Message- > From: Jonathan Wilson [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 26, 2002 6:05 AM > To: [EMAIL PROTECTED] > Subject: glib r

RE: GLIB Hash Data

2002-04-25 Thread Campbell, Matthew A
> > > > They need to be: > > > > guint HashFunction (gconstpointer key); > > gboolean HashCompare (gconstpointer a, gconstpointer b); > Ahh > > > I was following the example in the book. I see, but isn't gboolean > #DEFINED as an int? There is no BOOL in C. The more important

glib String function suggestion

2002-04-25 Thread Campbell, Matthew A
This has nothing to do with GTK as such, but I can't find a more appropriate place to post about glib. Trying to hammer out some code using a bunch of GStrings, I ran across a case where I wanted to concatenate them into a new GString, separated by a delimiter - much like g_strjoin. To my astoni

another error :)

2001-10-11 Thread Matthew Paterson
Hi Thanks to Ron Steinke for the help with my last problem. And now when i compile the program i get the following error : base.c: In function `main': base.c:6: stray '\240' in program base.c:6: stray '\240' in program base.c:6: stray '\240' in program base.c:6: stray '\240' in program base.c:8

gtk program compilation

2001-10-08 Thread Matthew Paterson
Hi I am trying to compile a very basic gtk program that will display a box. But whenever i try to compile the program with the following line : gcc -o base base.c 'gtk-config --cflags --libs' i get lots of errors. A sample of some of the errors follows : /usr/include/glib.h:491: parse error b

gtk-config and gnome-config relocation

2000-11-05 Thread matthew
The binary package will be installed from a GUI installer app. If these scripts are on the target system then I have a definite way of determining where the icons, executables, etc. belong in order to mesh with gnome. However, without these scripts it's guess work

Re: GTK and Perl

2000-11-05 Thread Matthew Beauchesne
mailing list. You can subscribe here. http://mail.gnome.org/mailman/listinfo/gtk-perl-list HTH -- Matthew Beauchesne [EMAIL PROTECTED] -- ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: cschtml and GnomeCanvas

2000-08-03 Thread Matthew
have the final say on what's included (and what's not). PS, a word of advice: Do *not* mention these widgets on #gnome. They simply do not exist. Matthew > Tom Cato > (please cc me) > > ___ > gtk-list mailing

Re: Fwd: Ann: GtkCanvas 0.1

2000-07-24 Thread Matthew
e-reordering then I think that it should be included. We're digressing into a chicken/egg thing. Gnome is built with the Gtk widgets, but a key Gtk widget cannot be implimented because of a problem with Gnome. It's a matter of Gnome trying

Re: Pushing text onto the selection buffer (off topic)

2000-07-24 Thread Matthew
>Matthew> Cutting and pasting was always a thorn in my side until I started > Matthew> using klipper. It's a KDE app but it runs fine under E+Gnome. >Matthew> It's a clipboard history that's invoked by Alt+v. A list of the >Matthew> last 10 ite

Re: Fwd: Ann: GtkCanvas 0.1

2000-07-24 Thread Matthew
eloper that is considering it's use. Is it too late in the dev cycle, or are there technical issues? And who is Tim? Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Fwd: Ann: GtkCanvas 0.1

2000-07-23 Thread Matthew
Thanks a load, Andy. Maybe Havoc will clear it for 1.4/2.0. Matthew -- Forwarded Message -- Subject: Ann: GtkCanvas 0.1 Date: Sun, 23 Jul 100 01:28:39 -0700 (PDT) From: Andy Tai <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] (I have sinned. GNOME developers, please par

Re: Pushing text onto the selection buffer (off topic)

2000-07-22 Thread Matthew
Excellent tool. Matthew > Guy Harris <[EMAIL PROTECTED]> writes: > > (Note that, the belief of some UNIX users to the contrary, there's > > more to cut-and-paste on UNIX/X systems than "select something and then > > paste it with the middle mouse button"

Re: Help with clist widget

2000-07-22 Thread Matthew
to it so that i can > connect a signal? Create your callback on the "click_column" signal like so: gtk_signal_connect (GTK_OBJECT (clist), "click_column", GTK_SIGNAL_FUNC(on_title_click_column), NULL); Matthew ___ gtk-list mailin

RE: test suite?

2000-07-19 Thread Neumann, Matthew C
Well, someone's pointed me to gtk+-1.2.8/gtk/testgtk, so I'm all set. Thanks very much! -Matt -Original Message- From: Neumann, Matthew C [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 9:53 AM To: '[EMAIL PROTECTED]' Subject: test suite? Hey, all. I&#

test suite?

2000-07-19 Thread Neumann, Matthew C
Hey, all. I've just installed gtk+-1.2.8 and glib-1.2.8, to try to get a graphical version of nethack running (noble cause, I'm sure). Unfortunately, the application dies, with: Gdk-CRITICAL **: file gdkimage.c: line 335 (gdk_image_get): assertion `window != NULL' failed. I'm assuming that this

Helix Installer Question

2000-07-18 Thread Matthew
his (paracode): if(UID) exit(0); I do not update as root, and it certainly doesn't exit. It prompts me for root's password. I'm looking at the code supplied in the Redhat6.x SRPM from ftp.helixcode.com. Matthew ___ gtk-list ma

Re: Getting the selected row in a GtkCTree

2000-07-08 Thread Matthew
NO!!! I just learned how to use it. :) You just have to treat it like a living thing. It has moods. If it's having a bad day then it will not cooperate... Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Widgets, Widgets, Widgets

2000-07-08 Thread Matthew
ure. If you're interested, head over to: http://advantio.com/community The following are available: Generic Search and Replace Simple MessageBox Extended MessageBox Confirmation Window Directory Selector A wrapper around the Gtk File Selection Dialog Give them a look and see if they

Re: Do I need to install gtk

2000-07-04 Thread Matthew
Run gtk-config --version to make sure that you're at 1.2.8. Matthew > > hello, > I installed RedHat6.0(all pack),do I still need to install gtk. ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Embedding one app within another

2000-06-19 Thread Matthew
ind it now. For example, I want to run one app within a notebook widget of another. Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: When to g_free()

2000-06-15 Thread Matthew
On Thu, 15 Jun 2000, you wrote: > Matthew <[EMAIL PROTECTED]> writes: > > Should I be g_free()ing my gtk_editable_get_chars()? Is there a rule of thumb > > to follow that will make it easier to figure out what to free and what doesn't > > need to be freed? >

When to g_free()

2000-06-15 Thread Matthew
Should I be g_free()ing my gtk_editable_get_chars()? Is there a rule of thumb to follow that will make it easier to figure out what to free and what doesn't need to be freed? Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnom

Getting text widget to scroll down as text is inserted

2000-06-14 Thread Matthew Miller
down so that I can see the newly inserted text. I have tried several things: connecting to the value-changed signal and calling gtk_adjustment_clamp_page(), or gtk_adjustment_set_value(). I just think I'm going about this the wrong way. Thanks for any help. Matthew -- A good government

Getting text widget to scroll down as text is inserted

2000-06-14 Thread Matthew Miller
down so that I can see the newly inserted text. I have tried several things: connecting to the value-changed signal and calling gtk_adjustment_clamp_page(), or gtk_adjustment_set_value(). I just think I'm going about this the wrong way. How would this be done? Thanks for any help. Matthew

Re: Thoughts about Kde, Gnome, and Staying Neutral (Was gtk-term widget?)

2000-06-13 Thread Matthew
er a complaint, perhaps someone involved will take action. They probably will not, but at least the opposing opinion is out there for them to deal with. "The only thing necessary for the triumph of evil is for good men to do nothing" -Burke A little harsh

Re: Thoughts about Kde, Gnome, and Staying Neutral (Was gtk-term widget?)

2000-06-12 Thread Matthew
I'm doing corporate development too, and every so often I do >gnash my teeth at something or other. But I respect how this community >works. Hell, I actually really dig it. I much prefer to work this way. Corporate development? Who said anything about that? I'm the leader of a very

Fwd: Re: Thoughts about Kde, Gnome, and Staying Neutral (Was gtk-term widget?)

2000-06-09 Thread Matthew
that. We done agreed. :) > (The widgets do have to be widget set specific; this is just not > technically avoidable, at least until we have a > not-widget-set-specific control embedding library.) Well yeah. But they don't have to be Gnome/Kde sp

Re: gtk-term widget?

2000-06-09 Thread Matthew
being on the CD. Redhat is the only distro THAT I KNOW that defaults to installing Gnome in all install options. Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Thoughts about Kde, Gnome, and Staying Neutral (Was gtk-term widget?)

2000-06-09 Thread Matthew
y would cooperate on "LinOutlook". Whoo, man, I feel a ton better. In case you're wondering I'm starting the ObjectManager beta tomorrow. That caps two months of stressfull, hard-core, nose-to-the-notebook coding. I've got a lot of built up anxiety. :) Don't get me start

Re: gtk-term widget?

2000-06-09 Thread Matthew
> > I write this half-joking. I use Helix Gnome w/ kfm + Kmail. But as I see > more > > and more of the cooler widgets being Gnome-o-tized, and Gtk getting the > > leftovers, it makes this Gtk developer nervous. > > > > Matthew > > Desktop neutrality is

Re: gtk-term widget?

2000-06-09 Thread Matthew
ing left is: if(!kde_compliant(pid)) kill(pid,9) or the Gnome equiv embedded in the WM somewhere... I write this half-joking. I use Helix Gnome w/ kfm + Kmail. But as I see more and more of the cooler widgets being Gnome-o-tized, and Gtk getting

Entry callback not called on pressing return.

2000-06-09 Thread Matthew Miller
tried it under NetBSD w/ gtk+ 2.2.8 and I got the same behavior I now get under linux. Anyone help! I really need some insight on this. Thanks, Matthew #include #include void close_application( GtkWidget *widget, gpointer data ) { gtk_main_quit(); } void entry_activated( GtkWidget*

Re: A bug in GTK

2000-05-31 Thread Matthew
> I have found a bug in the Gtk_Text_Get_Point() function. Where have I > mail to inform about this? Let's hear it. Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

List Master

2000-05-25 Thread Matthew
Who is the maintainer of this mailing list? Advertising.com is trying to remedy the NetEzine spam that keeps hitting us. They need some info, however. Matthew ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk

Re: Mailing list status - privacy?

2000-05-16 Thread Matthew
> Matthew if you are reading this, could you tell our list admins where the >setting is? I assume that they are reading the list? I use Mailman for all of my lists. I will use my domain as the example. The list is based at cvs.orasoft.org, and the name of the list that I will use f