Gtkmm-forge digest, Vol 1 #984 - 3 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Cc:
- Subject: Gtkmm-forge digest, Vol 1 #984 - 3 msgs
- Date: Sun, 09 Oct 2005 20:14:54 -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. Do not try to unsubscribe gtkmm-forge from gtkmm-list.
Today's Topics:
1. [Bug 318332] New: ScrolledWindow::get_(v/h)scrollbar_visible() are inverted (gtkmm (bugzilla.gnome.org))
2. [Bug 318407] New: missing lookup_entry() method for Gtk::AccelMap (gtkmm (bugzilla.gnome.org))
3. [Bug 318407] missing lookup_entry() method for Gtk::AccelMap (gtkmm (bugzilla.gnome.org))
--__--__--
Message: 1
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Sun, 9 Oct 2005 08:05:04 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 318332] New: ScrolledWindow::get_(v/h)scrollbar_visible() are inverted
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=3D318332
gtkmm | general | Ver: 2.6.x
Summary: ScrolledWindow::get_(v/h)scrollbar_visible() are
inverted
Product: gtkmm
Version: 2.6.x
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: noche suapie reflex at
CC: all-bugs bugzilla gnome org
Distribution/Version: gentoo
Compile and run the following program:
#include <iostream>
#include <gtkmm.h>
using namespace Gtk;=20
using namespace std;
class MainWindow : public Window
{
public:
MainWindow()
: _label("Some text ... \n"
"..............................................................=
....\n"
"..................................................................\n=
"
"..................................................................\n=
"
"..................................................................\n=
"
"..................................................................\n=
"
"..................................................................\n=
"
"..................................................................\n=
"
"..................................................................\n=
"
"..................................................................\n=
"),
_bVisible("Query")
{
set_title("ScrolledWindowBug");
set_size_request(200, 200);
set_border_width(5);
_vBox.set_spacing(5);
_scroll.set_policy(POLICY_AUTOMATIC, POLICY_AUTOMATIC);=20
=09
add(_vBox);
_vBox.add(_scroll);
_scroll.add(_label);
_vBox.pack_start(_bVisible, PACK_SHRINK);
show_all_children();
=09
_bVisible.signal_clicked().connect
(mem_fun(*this, &MainWindow::cb_visible));
}=09
private:
void cb_visible()
{
cout << "-------------------------------------" << endl;
cout << "_scroll.get_hscrollbar_visible() =3D=3D "
<< _scroll.get_hscrollbar_visible() << endl;
cout << "_scroll.get_vscrollbar_visible() =3D=3D "
<< _scroll.get_vscrollbar_visible() << endl;
}
=09
ScrolledWindow _scroll;
VBox _vBox;
Label _label;
Button _bVisible;
};
int main(int argc, char **argv)
{
Main kit(argc, argv);
MainWindow win;
Main::run(win);
}
------- You are receiving this mail because: -------
You are the assignee for the bug.
--__--__--
Message: 2
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Sun, 9 Oct 2005 21:46:13 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 318407] New: missing lookup_entry() method for Gtk::AccelMap
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=3D318407
gtkmm | general | Ver: 2.8.x
Summary: missing lookup_entry() method for Gtk::AccelMap
Product: gtkmm
Version: 2.8.x
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: gnome equalarea com
CC: all-bugs bugzilla gnome org
Distribution/Version: FC(n)
read the GTK+ documentation, note presence of gtk_accel_map_lookup_entry(=
).
then read the gtkmm header file and source file for accelmap. the lookup_=
entry()
method is missing.
------- You are receiving this mail because: -------
You are the assignee for the bug.
--__--__--
Message: 3
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Sun, 9 Oct 2005 22:13:40 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 318407] missing lookup_entry() method for Gtk::AccelMap
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=3D318407
gtkmm | general | Ver: 2.8.x
------- Additional Comments From Paul Davis 2005-10-10 02:13 -------
this is an implementation of the function:
bool lookup_entry (const Glib::ustring accel_path, Gtk::AccelKey& key)
{
GtkAccelKey gkey;
bool known =3D gtk_accel_map_lookup_entry (accel_path.c_str(), &gkey);
=09
if (known) {
key =3D AccelKey (gkey.accel_key, Gdk::ModifierType (gkey.accel_mods));
} else {
key =3D AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0));
}
return known;
}
------- You are receiving this mail because: -------
You are the assignee for the bug.
--__--__--
_______________________________________________
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]