|
|
Subject:
[Bug 109869] pyqt/pykde applications don't accept SCIM input - msg#00008
Website Speed Performance Monitoring
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=109869
------- Additional Comments From gubotruth gmail com 2006-12-11 03:34 -------
For me, Kbabel does not accept SCIM input. Is it a pyqt/pykde app?
Thread at a glance:
Previous Message by Date:
playground/bindings/kimono
SVN commit 611348 by rdale:
* Added missing QAccessible* and QFileSystemWatcher classes
CCMAIL: kde-bindings@xxxxxxx
M +7 -1 ChangeLog
A gui/QAccessible.cs
A gui/QAccessibleApplication.cs
A gui/QAccessibleBridge.cs
A gui/QAccessibleBridgeFactoryInterface.cs
A gui/QAccessibleEvent.cs
A gui/QAccessibleInterface.cs
A gui/QAccessibleInterfaceEx.cs
A gui/QAccessibleObject.cs
A gui/QAccessibleObjectEx.cs
A gui/QAccessibleWidget.cs
A gui/QAccessibleWidgetEx.cs
--- trunk/playground/bindings/kimono/ChangeLog #611347:611348
@@ -1,5 +1,11 @@
-2006-10-23 Richard Dale <rdale@xxxxxxxx>
+2006-12-07 Richard Dale <rdale@xxxxxxxx>
+ * Use QDate, QDateTime and QTime for dates and times, not the C#
+ DateTime class
+ * Added missing QAccessible* and QFileSystemWatcher classes
+
+2006-12-06 Richard Dale <rdale@xxxxxxxx>
+
* Regenerate the Qyoto classes against the Qt 4.2.2 headers
* Split the classes into core, qdbus, gui, network, opengl, sql, svg
and xml directories corresponding to the Qt modules.
Next Message by Date:
KDE/kdebindings/qtruby
SVN commit 612878 by rdale:
* Removed the qtrubyinit program as it's a pita to build, and isn't very
useful
CCMAIL: kde-bindings@xxxxxxx
M +5 -0 ChangeLog
M +0 -8 bin/Makefile.am
D bin/qtrubyinit.cpp
--- trunk/KDE/kdebindings/qtruby/ChangeLog #612877:612878
@@ -1,3 +1,8 @@
+2006-12-12 Richard Dale <rdale@xxxxxxxx>
+
+ * Removed the qtrubyinit program as it's a pita to build, and isn't very
+ useful
+
2006-12-04 Richard Dale <rdale@xxxxxxxx>
* Add a QMap<int,QVariant> marshaller
--- trunk/KDE/kdebindings/qtruby/bin/Makefile.am #612877:612878
@@ -1,11 +1,3 @@
-INCLUDES = $(all_includes) -I$(RUBY_ARCHDIR)
-
-bin_PROGRAMS = qtrubyinit
-qtrubyinit_LDFLAGS = -module $(all_libraries) -version-info 0:0:0
-L$(top_srcdir)/smoke/qt/ -L$(RUBY_LIBDIR)
-qtrubyinit_METASOURCES = AUTO
-qtrubyinit_SOURCES = qtrubyinit.cpp
-qtrubyinit_LDADD = $(LIB_QT) $(RUBY_LIBRUBYARG)
$(top_builddir)/smoke/qt/libsmokeqt.la
$(top_builddir)/qtruby/rubylib/qtruby/libqtrubyinternal.la
-
bin_SCRIPTS = rbqtapi rbqtsh
install-exec-local:
Previous Message by Thread:
Status
The message cannot be represented in 7-bit ASCII encoding
and has been sent as a binary attachment
doc.zip
Description: Binary data
_______________________________________________
Kde-bindings mailing list
Kde-bindings@xxxxxxx
https://mail.kde.org/mailman/listinfo/kde-bindings
Next Message by Thread:
[Bug 138751] New: Invalid member generation for Qt::Palette - Qt 4.2.2
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=138751
Summary: Invalid member generation for Qt::Palette - Qt 4.2.2
Product: bindings
Version: unspecified
Platform: Gentoo Packages
OS/Version: Linux
Status: NEW
Severity: normal
Priority: NOR
Component: general
AssignedTo: kde-bindings kde org
ReportedBy: caleb aei-tech com
Version: (using KDE KDE 3.5.5)
Installed from: Gentoo Packages
OS: Linux
The Qt 4.2 API shows these methods under QPalette:
void setBrush ( ColorRole cr, const QBrush & brush )
void setBrush ( ColorGroup cg, ColorRole cr, const QBrush & b )
void setColor ( ColorGroup gr, ColorRole r, const QColor & c )
void setColor ( ColorRole r, const QColor & c )
note that "ColorRole" and "ColorGroup" are both enums within QPalette.
However, qt4-qtruby picks it up as this:
void QPalette::setBrush(QColorGroup::ColorRole, const QBrush&)
void QPalette::setBrush(QPalette::ColorGroup, QColorGroup::ColorRole, const
QBrush&)
void QPalette::setColor(QColorGroup::ColorRole, const QColor&)
void QPalette::setColor(QPalette::ColorGroup, QColorGroup::ColorRole, const
QColor&)
It seems that it's using QColorGroup::ColorRole instead of QPalette::ColorRole.
|
|