[gtkmm] Gtkmm-forge digest, Vol 1 #193 - 7 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #193 - 7 msgs
- Date: Wed, 14 Aug 2002 12:01:24 -0700
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 90474] Changed - Combo API is incomplete (bugzilla-daemon widget gnome org)
2. [Bug 90689] New - Patch to check for existence of 'dot' (bugzilla-daemon widget gnome org)
3. [Bug 90689] Changed - Patch to check for existence of 'dot' (bugzilla-daemon widget gnome org)
4. [Bug 90474] Changed - Combo API is incomplete (bugzilla-daemon widget gnome org)
5. [Bug 90753] New - Gtk::Scale methods use int instead of bool (and aren't documented) (bugzilla-daemon widget gnome org)
6. [Bug 90753] Changed - Gtk::Scale methods use int instead of bool (and aren't documented) (bugzilla-daemon widget gnome org)
7. [Bug 90689] Changed - Patch to check for existence of 'dot' (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Tue, 13 Aug 2002 16:22:35 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90474] Changed - Combo API is incomplete
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=90474
Changed by mhl schulze t-online de
--- shadow/90474 Tue Aug 13 05:08:11 2002
+++ shadow/90474.tmp.27184 Tue Aug 13 16:22:35 2002
@@ -113,6 +113,11 @@
------- Additional Comments From murrayc usa net 2002-08-13 05:08 -------
Maybe this
_CLASS_GTKOBJECT(ComboDropDownItem,GtkListItem,GTK_LIST,Gtk::Item,GtkItem)
should be this
_CLASS_GTKOBJECT(ComboDropDownItem,GtkListItem,GTK_LIST_ITEM,Gtk::Item,GtkItem)
+
+------- Additional Comments From MHL Schulze t-online de 2002-08-13 16:22 -------
+Created an attachment (id=10466)
+Now correct usage of _CLASS_GTKOBJECT in wrapper ComboDropDownItem and extended combo example working. Shall I try to commit?
+
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Tue, 13 Aug 2002 21:06:44 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90689] New - Patch to check for existence of 'dot'
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=90689
Changed by btb debian org
--- shadow/90689 Tue Aug 13 21:06:44 2002
+++ shadow/90689.tmp.21594 Tue Aug 13 21:06:44 2002
@@ -0,0 +1,55 @@
+Bug#: 90689
+Product: gtkmm
+Version: 2.0
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: reference documentation
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: btb debian org
+QAContact: gtkmm-forge lists sourceforge net
+TargetMilestone: ---
+URL:
+Summary: Patch to check for existence of 'dot'
+
+the 'dot' program used by doxygen is non-free, and therefore is not used
+when building debs of gtkmm. Doxygen seems to be perfectly capable of
+building the relevant diagrams without it, though, providing you set the
+HAVE_DOT variable correctly. This will do so.
+
+Index: configure.in
+===================================================================
+RCS file: /cvs/gnome/gtkmm-root/base/configure.in,v
+retrieving revision 1.103
+diff -u -r1.103 configure.in
+--- configure.in 10 Aug 2002 17:39:37 -0000 1.103
++++ configure.in 14 Aug 2002 01:00:44 -0000
+@@ -179,6 +179,9 @@
+ # This will be much slower.
+ GTKMM_ARG_ENABLE_FULLDOCS()
+
++# Check for the dot program
++AC_CHECK_PROG(HAVE_DOT,[dot],[YES],[NO])
++
+
+ # Dummy conditional just to make automake-1.4 happy.
+ # We need an always-false condition in docs/Makefile.am.
+Index: docs/reference/Doxyfile.in
+===================================================================
+RCS file: /cvs/gnome/gtkmm-root/base/docs/reference/Doxyfile.in,v
+retrieving revision 1.11
+diff -u -r1.11 Doxyfile.in
+--- docs/reference/Doxyfile.in 23 Apr 2002 15:39:05 -0000 1.11
++++ docs/reference/Doxyfile.in 14 Aug 2002 01:00:44 -0000
+@@ -155,7 +155,7 @@
+ # Configuration options related to the dot tool
+ #---------------------------------------------------------------------------
+ CLASS_DIAGRAMS = YES
+-HAVE_DOT = YES
++HAVE_DOT = @HAVE_DOT@
+ CLASS_GRAPH = YES
+ COLLABORATION_GRAPH = NO
+ TEMPLATE_RELATIONS = NO
--__--__--
Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, btb debian org
Cc:
Date: Wed, 14 Aug 2002 03:51:19 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90689] Changed - Patch to check for existence of 'dot'
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=90689
Changed by murrayc usa net
--- shadow/90689 Tue Aug 13 21:06:44 2002
+++ shadow/90689.tmp.17281 Wed Aug 14 03:51:19 2002
@@ -50,6 +50,13 @@
CLASS_DIAGRAMS = YES
-HAVE_DOT = YES
+HAVE_DOT = @HAVE_DOT@
CLASS_GRAPH = YES
COLLABORATION_GRAPH = NO
TEMPLATE_RELATIONS = NO
+
+------- Additional Comments From murrayc usa net 2002-08-14 03:51 -------
+Dot builds _better_ diagrams. I don't want 2 versions of the same
+documentation.
+
+Do you expect to distribute the documentation in a deb? In a separate
+deb? Maybe we should just generate it as part of the whole build.
--__--__--
Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, MHL Schulze t-online de
Cc:
Date: Wed, 14 Aug 2002 04:15:10 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90474] Changed - Combo API is incomplete
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=90474
Changed by murrayc usa net
--- shadow/90474 Tue Aug 13 16:22:35 2002
+++ shadow/90474.tmp.22356 Wed Aug 14 04:15:10 2002
@@ -1,13 +1,13 @@
Bug#: 90474
Product: gtkmm
Version: 2.0
OS: other
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: normal
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: MHL Schulze t-online de
TargetMilestone: ---
@@ -118,6 +118,10 @@
_CLASS_GTKOBJECT(ComboDropDownItem,GtkListItem,GTK_LIST_ITEM,Gtk::Item,GtkItem)
------- Additional Comments From MHL Schulze t-online de 2002-08-13 16:22 -------
Created an attachment (id=10466)
Now correct usage of _CLASS_GTKOBJECT in wrapper ComboDropDownItem and extended combo example working. Shall I try to commit?
+
+------- Additional Comments From murrayc usa net 2002-08-14 04:15 -------
+That's great. But your cvs write access does not seem to have happened
+yet, so I have committed it.
--__--__--
Message: 5
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Wed, 14 Aug 2002 12:47:56 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90753] New - Gtk::Scale methods use int instead of bool (and aren't documented)
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=90753
Changed by olau hardworking dk
--- shadow/90753 Wed Aug 14 12:47:56 2002
+++ shadow/90753.tmp.25415 Wed Aug 14 12:47:56 2002
@@ -0,0 +1,37 @@
+Bug#: 90753
+Product: gtkmm
+Version: 2.0
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: general
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: olau hardworking dk
+TargetMilestone: ---
+URL:
+Summary: Gtk::Scale methods use int instead of bool (and aren't documented)
+
+The two methods in question are:
+
+ void set_draw_value (int draw_value)
+ int get_draw_value () const
+
+However, the GTK+ documentation says
+
+ void gtk_scale_set_draw_value (GtkScale *scale, gboolean draw_value);
+
+ Specifies whether the current value is displayed as a string next
+ to the slider.
+
+so integer values doesn't make any sense. I'm attaching a patch for
+correcting this - the patch also adds more documentation and fixes some of
+the existing. I haven't documented calc_digits, though, since I'm not quite
+sure what is is supposed to do.
+
+The patch shouldn't cause any real API change because of the implicit
+conversion rules between bool and int, but I guess it is important to
+change before the ABI freeze. (Note that the patch hasn't been syntax
+checked since I couldn't get the CVS version of gtkmm-1.3 to compile.)
--__--__--
Message: 6
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Wed, 14 Aug 2002 12:48:49 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90753] Changed - Gtk::Scale methods use int instead of bool (and aren't documented)
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=90753
Changed by olau hardworking dk
--- shadow/90753 Wed Aug 14 12:47:56 2002
+++ shadow/90753.tmp.25526 Wed Aug 14 12:48:49 2002
@@ -32,6 +32,11 @@
sure what is is supposed to do.
The patch shouldn't cause any real API change because of the implicit
conversion rules between bool and int, but I guess it is important to
change before the ABI freeze. (Note that the patch hasn't been syntax
checked since I couldn't get the CVS version of gtkmm-1.3 to compile.)
+
+------- Additional Comments From olau hardworking dk 2002-08-14 12:48 -------
+Created an attachment (id=10488)
+Changes int to bool int set/get_draw_value and adds documentation
+
--__--__--
Message: 7
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Wed, 14 Aug 2002 14:22:37 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90689] Changed - Patch to check for existence of 'dot'
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=90689
Changed by btb debian org
--- shadow/90689 Wed Aug 14 03:51:19 2002
+++ shadow/90689.tmp.4144 Wed Aug 14 14:22:36 2002
@@ -57,6 +57,17 @@
------- Additional Comments From murrayc usa net 2002-08-14 03:51 -------
Dot builds _better_ diagrams. I don't want 2 versions of the same
documentation.
Do you expect to distribute the documentation in a deb? In a separate
deb? Maybe we should just generate it as part of the whole build.
+
+------- Additional Comments From btb debian org 2002-08-14 14:22 -------
+Yes, I am distributing it, in a separate deb for gtkmm (only because
+it's so large), and in the -dev package for the other modules. I
+build it with a simple 'make -C docs/reference' (and patching Doxyfile.in)
+
+I noticed that with non-dot, the diagrams are slightly less complete, but
+I think distributing reference docs is important, and would not want
+to put them into "non-free" or "contrib".
+
+
--__--__--
_______________________________________________
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]