[gtkmm] Gtkmm-forge digest, Vol 1 #180 - 5 msgs



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-admin 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.


Today's Topics:

   1. [Bug 89780] Changed - signal_button_press_event is not called (bugzilla-daemon widget gnome org)
   2. [Bug 89833] New - The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+ (bugzilla-daemon widget gnome org)
   3. [Bug 89833] Changed - The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+ (bugzilla-daemon widget gnome org)
   4. [Bug 89833] Changed - The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+ (bugzilla-daemon widget gnome org)
   5. [Bug 89557] Changed - incorrect reference counting for gobject (bugzilla-daemon widget gnome org)

--__--__--

Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, steve przepiora org
Cc: 
Date: Sat,  3 Aug 2002 15:30:19 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 89780] Changed - signal_button_press_event is not called

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=89780

Changed by murrayc usa net 

--- shadow/89780	Sat Aug  3 08:44:16 2002
+++ shadow/89780.tmp.32563	Sat Aug  3 15:30:19 2002
@@ -32,6 +32,13 @@
 want called and the new class will call it when I get an on_button_press_event.
 
 ------- Additional Comments From steve przepiora org  2002-08-03 08:44 -------
 Created an attachment (id=10239)
 example of the bug
 
+
+------- Additional Comments From murrayc usa net  2002-08-03 15:30 -------
+Please simplify this example:
+1. The bool column doesn't seem to be relevant.
+2. Please just use the default cell renderers by using the templated
+append_column() method. This will reduce the code size.
+3. We only need one row to test this.



--__--__--

Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Sun,  4 Aug 2002 07:12:06 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 89833] New - The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=89833

Changed by dss home se 

--- shadow/89833	Sun Aug  4 07:12:06 2002
+++ shadow/89833.tmp.29167	Sun Aug  4 07:12:06 2002
@@ -0,0 +1,38 @@
+Bug#: 89833
+Product: gtkmm
+Version: 2.0
+OS: All
+OS Details: RedHat Linux 7.3
+Status: NEW   
+Resolution: 
+Severity: normal
+Priority: Normal
+Component: TreeView
+AssignedTo: gtkmm-forge lists sourceforge net                            
+ReportedBy: dss home se               
+TargetMilestone: ---
+URL: 
+Summary: The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+
+
+I think the treestore example in gtkmm/demo/gtk-demo should look like the
+corresponding demo in the gtk+ distribution. In the Gtkmm example there are
+also toggle-cells on the rows there you have the months. In the Gtk+
+example there are not toggle-cells on those rows. I have not managed to fix
+this. It seems like there "should be" one more function to append rows to
+the tree-store. The sample program uses: 
+
+Gtk::TreeRow row = *(m_refTreeStore->append());
+
+There should be some way to tell this function not to use all columns in my
+model...
+
+This may not be critical for functionality but it is critical for the user
+experience.
+
+Screenshot of Gtk+ sample program:
+http://bart.sm.luth.se/~dansun-8/gtk_treestore.png
+
+Screenshot of Gtkmm sample program:
+http://bart.sm.luth.se/~dansun-8/gtkmm_treestore.png
+
+I'm using gtkmm-1.3.18 and gtk+-2.0.5



--__--__--

Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, dss home se
Cc: 
Date: Sun,  4 Aug 2002 07:26:49 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 89833] Changed - The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=89833

Changed by murrayc usa net 

--- shadow/89833	Sun Aug  4 07:12:06 2002
+++ shadow/89833.tmp.30973	Sun Aug  4 07:26:49 2002
@@ -33,6 +33,15 @@
 http://bart.sm.luth.se/~dansun-8/gtk_treestore.png
 
 Screenshot of Gtkmm sample program:
 http://bart.sm.luth.se/~dansun-8/gtkmm_treestore.png
 
 I'm using gtkmm-1.3.18 and gtk+-2.0.5
+
+------- Additional Comments From murrayc usa net  2002-08-04 07:26 -------
+See line 310 of gtk+/demos/gtk-demo/tree_store.c.
+
+They use an extra hidden "visible" column, which is linked to the
+CellRenderer's "visible" property. We need to do that too, by
+specifying a custom cell renderer, as described in the TreeView
+chapter. Tell me if you have any problems doing that.
+



--__--__--

Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Sun,  4 Aug 2002 10:27:57 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 89833] Changed - The appearance of the TreeStore example in gtk-demo (in gtkmm) differs from the example in gtk+

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=89833

Changed by dss home se 

--- shadow/89833	Sun Aug  4 07:26:49 2002
+++ shadow/89833.tmp.19501	Sun Aug  4 10:27:57 2002
@@ -42,6 +42,19 @@
 
 They use an extra hidden "visible" column, which is linked to the
 CellRenderer's "visible" property. We need to do that too, by
 specifying a custom cell renderer, as described in the TreeView
 chapter. Tell me if you have any problems doing that.
 
+
+------- Additional Comments From dss home se  2002-08-04 10:27 -------
+This was indeed really simple to fix, just change row 305 in
+gtkmm/demos/gtk-demo/example_treeview_treestore.cc from:
+
+  row[m_columns.visible]      = true;
+
+to
+
+  row[m_columns.visible]      = false;
+
+I thought the visible attribute was used to determine if you could
+toggle the "toggle cell renderer". My mistake...



--__--__--

Message: 5
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, szombath bifab de
Cc: 
Date: Sun,  4 Aug 2002 10:34:24 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 89557] Changed - incorrect reference counting for gobject

Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=89557

Changed by murrayc usa net 

--- shadow/89557	Thu Aug  1 14:54:26 2002
+++ shadow/89557.tmp.20320	Sun Aug  4 10:34:24 2002
@@ -1,13 +1,13 @@
 Bug#: 89557
 Product: gtkmm
 Version: 2.0
 OS: All
 OS Details: 
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: normal
 Priority: Normal
 Component: general
 AssignedTo: gtkmm-forge lists sourceforge net                            
 ReportedBy: szombath bifab de               
 TargetMilestone: ---
@@ -85,6 +85,12 @@
 
 ------- Additional Comments From murrayc usa net  2002-08-01 14:51 -------
 May I add this code to the gtkmm tests directory?
 
 ------- Additional Comments From szombath bifab de  2002-08-01 14:54 -------
 Of course.
+
+------- Additional Comments From murrayc usa net  2002-08-04 10:34 -------
+This seems to be fixed now, though some other stuff
+(examples/book/menus/main_menu, for example) now segfaults on close.
+
+Thanks for giving me a clean example.




--__--__--

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


End of Gtkmm-forge Digest



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