Gtkmm-forge Digest, Vol 9, Issue 2



Send Gtkmm-forge mailing list submissions to
	gtkmm-forge lists sourceforge net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
	gtkmm-forge-request lists sourceforge net

You can reach the person managing the list at
	gtkmm-forge-owner lists sourceforge net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."


gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla.  A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs. Do not try to unsubscribe gtkmm-forge from gtkmm-list.


Today's Topics:

   1. [Bug 364395] gtk_window_set_default_icon_name()	isn't
      available from gtkmm (gtkmm (bugzilla.gnome.org))
   2. [Bug 386990] glibmm-2.12.3 does not build on
      NetBSD-4.99.6/amd64 (glibmm (bugzilla.gnome.org))
   3. [Bug 393571] option parser ignores default values
      (glibmm (bugzilla.gnome.org))
   4. [Bug 396963] Add Glib::signal_idle().connect_once()
      (glibmm (bugzilla.gnome.org))
   5. [Bug 401083] Async API example (gnomemm (bugzilla.gnome.org))
   6. [Bug 385268] Gtk::StatusIcon needs to wrap	activate and
      popup-menu signals (gtkmm (bugzilla.gnome.org))
   7. [Bug 392948] gtk_status_icon_position_menu()	missing in
      Gtk::StatusIcon (gtkmm (bugzilla.gnome.org))
   8. [Bug 385268] Gtk::StatusIcon needs to wrap	activate and
      popup-menu signals (gtkmm (bugzilla.gnome.org))
   9. [Bug 351810] C++ bindings for GtkBinding*
      (gtkmm (bugzilla.gnome.org))


----------------------------------------------------------------------

Message: 1
Date: Sat, 10 Feb 2007 13:51:21 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 364395]
	gtk_window_set_default_icon_name()	isn't available from gtkmm
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210135121 AA6BB6C41C4 box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=364395

  gtkmm | general | Ver: 2.10.x





------- Comment #3 from Murray Cumming  2007-02-10 13:49 UTC -------
Actually, just gtk_window_set_default_icon_name(name.c_str()) would be correct.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 2
Date: Sat, 10 Feb 2007 14:10:29 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 386990] glibmm-2.12.3 does not build on
	NetBSD-4.99.6/amd64
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210141029 C41D26C41F6 box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=386990

  glibmm | build | Ver: 2.12.x





------- Comment #5 from Murray Cumming  2007-02-10 14:08 UTC -------
I am confused about this, because the GTime documentation
http://developer.gnome.org/doc/API/2.0/glib/glib-Date-and-Time-Functions.html#GTime
says 
"Simply a replacement for time_t. It has been deprecated since it is not
equivalent to time_t on 64-bit platforms with a 64-bit time_t.
"

Which means that GTime and time_t should NOT be equivalent on your 64-bit
system, so compilation should work, but they SHOULD be equivalent on 32-bit
systems, meaning that it shouldn't compile for me.

Is your glib patched to fix the GTime problem? What is the definition of GTime
in your glib? In my gdate.h, it is 
"
typedef gint32  GTime;
"


A test would look a bit like this:

#include <time.h>

typedef signed int gint32;

class Test
{
  void something(gint32 val)
  {}

  void something(time_t val)
  {}
};

int main()
{
  Test test;
  return 0;
}


That should fail for you. It compiles for me.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 3
Date: Sat, 10 Feb 2007 14:16:31 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 393571] option parser ignores default
	values
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210141631 168646C4202 box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=393571

  glibmm | general | Ver: 2.13.x


Murray Cumming changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |murrayc murrayc com




------- Comment #1 from Murray Cumming  2007-02-10 14:14 UTC -------
Do you mean that if we do, for instance:

  Glib::ustring arg_foo = "some default value";
  Glib::OptionEntry entry1;
  entry1.set_long_name("foo");
  entry1.set_short_name('f');
  entry1.set_description("The Foo");
  add_entry(entry1, arg_foo);

  Then arg_foo will be "" if the user does not specify it? So the caller has to
check whether it's empty and then explicitly use a default value.


Yes, I had not considered that would be wanted. I guess I just like to
initialize output variables in case the caller doesn't do it. That might be a
disadvantage here.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 4
Date: Sat, 10 Feb 2007 14:17:59 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 396963] Add
	Glib::signal_idle().connect_once()
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210141759 262246C41F6 box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=396963

  glibmm | main loop | Ver: 2.13.x


Murray Cumming changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |murrayc murrayc com




------- Comment #1 from Murray Cumming  2007-02-10 14:16 UTC -------
Yes, this would be useful.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 5
Date: Sat, 10 Feb 2007 14:28:02 +0000 (UTC)
From: "gnomemm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 401083] Async API example
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210142802 4B0816C41F0 box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=401083

  gnomemm | gnome-vfsmm | Ver: 2.18


Murray Cumming changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|FIXED                       |




------- Comment #10 from Murray Cumming  2007-02-10 14:26 UTC -------
So, I am reopening this bug because it sounds like this API change is not
finished. Thanks for all your effort.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 6
Date: Sat, 10 Feb 2007 14:40:36 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 385268] Gtk::StatusIcon needs to wrap
	activate and popup-menu signals
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210144036 537A06C41EB box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=385268

  gtkmm | general | Ver: 2.10.x





------- Comment #3 from Murray Cumming  2007-02-10 14:38 UTC -------
Created an attachment (id=82281)
 --> (http://bugzilla.gnome.org/attachment.cgi?id=82281&action=view)
gtkmm_statusicon_signals.patch

We can apply this patch when we branch for gtkmm 2.12. Until then, people need
to use the C signal API.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 7
Date: Sat, 10 Feb 2007 15:16:33 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 392948] gtk_status_icon_position_menu()
	missing in Gtk::StatusIcon
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210151633 D342CFE800C box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=392948

  gtkmm | general | Ver: 2.10.x





------- Comment #1 from Murray Cumming  2007-02-10 15:14 UTC -------
Created an attachment (id=82284)
 --> (http://bugzilla.gnome.org/attachment.cgi?id=82284&action=view)
/gtkmm_statusicon_popup_menu_at_position.patch

This patch can be applied when we branch for gtkmm 2.12.

See also bug #385268


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 8
Date: Sat, 10 Feb 2007 15:16:51 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 385268] Gtk::StatusIcon needs to wrap
	activate and popup-menu signals
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210151651 EDF2CFE800C box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=385268

  gtkmm | general | Ver: 2.10.x





------- Comment #4 from Murray Cumming  2007-02-10 15:14 UTC -------
See also bug #392948


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

Message: 9
Date: Sat, 10 Feb 2007 15:23:16 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 351810] C++ bindings for GtkBinding*
To: gtkmm-forge lists sourceforge net
Message-ID: <20070210152316 2D4EEFE8012 box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=351810

  gtkmm | general | Ver: unspecified





------- Comment #10 from Murray Cumming  2007-02-10 15:21 UTC -------
Let's take a look at this when we branch for gtkmm 2.12. Among other things,
this should follow existing conventions, such as capitalized class names
without _ underscores.

We'll need an example to show how to use this. That could be an addition to the
custom widget example, I guess.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

------------------------------

_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge


End of Gtkmm-forge Digest, Vol 9, Issue 2
*****************************************



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]