commit yast2-qt for openSUSE:Factory

2012-05-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-05-07 22:54:02

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-04-23 
16:14:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-05-07 
22:54:03.0 +0200
@@ -1,0 +2,6 @@
+Fri May  4 10:22:36 CEST 2012 - tgoettlic...@suse.de
+
+- Sort numeric table columns in numeric order
+- Version: 2.22.6
+
+---

Old:

  yast2-qt-2.22.5.tar.bz2

New:

  yast2-qt-2.22.6.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.78yQSs/_old  2012-05-07 22:54:04.0 +0200
+++ /var/tmp/diff_new_pack.78yQSs/_new  2012-05-07 22:54:04.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.5
+Version:2.22.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.5.tar.bz2
+Source0:yast2-qt-2.22.6.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.5.tar.bz2 - yast2-qt-2.22.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.5/VERSION.cmake 
new/yast2-qt-2.22.6/VERSION.cmake
--- old/yast2-qt-2.22.5/VERSION.cmake   2012-04-10 15:42:07.0 +0200
+++ new/yast2-qt-2.22.6/VERSION.cmake   2012-05-04 15:34:45.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 5)
+SET(VERSION_PATCH 6)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.5/package/yast2-qt.changes 
new/yast2-qt-2.22.6/package/yast2-qt.changes
--- old/yast2-qt-2.22.5/package/yast2-qt.changes2012-04-10 
15:42:07.0 +0200
+++ new/yast2-qt-2.22.6/package/yast2-qt.changes2012-05-04 
15:34:45.0 +0200
@@ -1,4 +1,10 @@
 ---
+Fri May  4 10:22:36 CEST 2012 - tgoettlic...@suse.de
+
+- Sort numeric table columns in numeric order
+- Version: 2.22.6
+
+---
 Tue Apr 10 15:40:58 CEST 2012 - tgoettlic...@suse.de
 
 - BuildRequire libxcrypt-devel only for  12.2 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.5/src/QY2ListView.cc 
new/yast2-qt-2.22.6/src/QY2ListView.cc
--- old/yast2-qt-2.22.5/src/QY2ListView.cc  2012-04-10 15:42:07.0 
+0200
+++ new/yast2-qt-2.22.6/src/QY2ListView.cc  2012-05-04 15:34:45.0 
+0200
@@ -437,6 +437,25 @@
 
 }
 
+// numeric sorting if columns are numbers
+int column = treeWidget()-sortColumn();
+QString text1=text(column).trimmed();
+QString text2=otherListViewItem.text(column).trimmed();
+
+text1=text1.left(text1.indexOf(QChar(' '))); 
+text2=text2.left(text2.indexOf(QChar(' ')));
+  
+bool ok1, ok2; // conversion to int successful
+bool retval = text1.toInt(ok1)  text2.toInt(ok2);
+
+if (ok1  ok2 )
+return retval; // int  int
+else if (ok1  !ok2)  
+return true;   // int  string
+else if (!ok1  ok2)  
+return false;  // string  int
+
+// and finally non-numeric sorting is done by the base class
 return QTreeWidgetItem::operator(otherListViewItem);
 }
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-04-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-04-23 16:14:29

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-24 
06:54:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-04-23 
16:14:30.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 10 15:40:58 CEST 2012 - tgoettlic...@suse.de
+
+- BuildRequire libxcrypt-devel only for  12.2 
+- Version: 2.22.5
+
+---

Old:

  yast2-qt-2.22.4.tar.bz2

New:

  yast2-qt-2.22.5.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.ylRUa1/_old  2012-04-23 16:14:31.0 +0200
+++ /var/tmp/diff_new_pack.ylRUa1/_new  2012-04-23 16:14:31.0 +0200
@@ -18,24 +18,26 @@
 
 
 Name:   yast2-qt
-Version:2.22.4
+Version:2.22.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.4.tar.bz2
+Source0:yast2-qt-2.22.5.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel
 BuildRequires:  libjpeg-devel
-BuildRequires:  libxcrypt-devel
 BuildRequires:  libxslt
 BuildRequires:  perl-XML-Writer
 BuildRequires:  libqt4-devel
 BuildRequires:  sgml-skel
 BuildRequires:  update-desktop-files
 BuildRequires:  cmake
+%if 0%{?suse_version}  1220
+BuildRequires:  libxcrypt-devel
+%endif
 %requires_ge   libqt4 
 
 Summary:YaST2 - Graphical User Interface

++ yast2-qt-2.22.4.tar.bz2 - yast2-qt-2.22.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.4/VERSION.cmake 
new/yast2-qt-2.22.5/VERSION.cmake
--- old/yast2-qt-2.22.4/VERSION.cmake   2012-02-23 15:16:05.0 +0100
+++ new/yast2-qt-2.22.5/VERSION.cmake   2012-04-10 15:42:07.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 4)
+SET(VERSION_PATCH 5)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.4/package/yast2-qt.changes 
new/yast2-qt-2.22.5/package/yast2-qt.changes
--- old/yast2-qt-2.22.4/package/yast2-qt.changes2012-02-23 
15:16:05.0 +0100
+++ new/yast2-qt-2.22.5/package/yast2-qt.changes2012-04-10 
15:42:07.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Apr 10 15:40:58 CEST 2012 - tgoettlic...@suse.de
+
+- BuildRequire libxcrypt-devel only for  12.2 
+- Version: 2.22.5
+
+---
 Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
 
 - Fixed selection Table widget (bnc#746156) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.4/yast2-qt.spec.in 
new/yast2-qt-2.22.5/yast2-qt.spec.in
--- old/yast2-qt-2.22.4/yast2-qt.spec.in2012-02-23 15:16:05.0 
+0100
+++ new/yast2-qt-2.22.5/yast2-qt.spec.in2012-04-10 15:42:07.0 
+0200
@@ -8,13 +8,15 @@
 BuildRequires: doxygen 
 BuildRequires: libdrm-devel 
 BuildRequires: libjpeg-devel 
-BuildRequires: libxcrypt-devel 
 BuildRequires: libxslt 
 BuildRequires: perl-XML-Writer 
 BuildRequires: libqt4-devel 
 BuildRequires: sgml-skel 
 BuildRequires: update-desktop-files
 BuildRequires:  cmake
+%if 0%{?suse_version}  1220
+BuildRequires:  libxcrypt-devel
+%endif
 %requires_ge   libqt4 
 
 Summary:   YaST2 - Graphical User Interface

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-24 06:54:55

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-20 
16:20:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-24 
06:54:58.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection Table widget (bnc#746156) 
+- Version: 2.22.4
+
+---

Old:

  yast2-qt-2.22.3.tar.bz2

New:

  yast2-qt-2.22.4.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.EGrLvM/_old  2012-02-24 06:55:00.0 +0100
+++ /var/tmp/diff_new_pack.EGrLvM/_new  2012-02-24 06:55:00.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.3
+Version:2.22.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.3.tar.bz2
+Source0:yast2-qt-2.22.4.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.3.tar.bz2 - yast2-qt-2.22.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/VERSION.cmake 
new/yast2-qt-2.22.4/VERSION.cmake
--- old/yast2-qt-2.22.3/VERSION.cmake   2012-02-17 16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/VERSION.cmake   2012-02-23 15:16:05.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 3)
+SET(VERSION_PATCH 4)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/package/yast2-qt.changes 
new/yast2-qt-2.22.4/package/yast2-qt.changes
--- old/yast2-qt-2.22.3/package/yast2-qt.changes2012-02-17 
16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/package/yast2-qt.changes2012-02-23 
15:16:05.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection Table widget (bnc#746156) 
+- Version: 2.22.4
+
+---
 Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
 
 - Fixed selection and sorting in Table widget (bnc#746156) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/src/YQTable.cc 
new/yast2-qt-2.22.4/src/YQTable.cc
--- old/yast2-qt-2.22.3/src/YQTable.cc  2012-02-17 16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/src/YQTable.cc  2012-02-23 15:16:05.0 +0100
@@ -296,7 +296,7 @@
 void
 YQTable::slotSelected( QTreeWidgetItem * listViewItem  )
 {
-if ( listViewItem  listViewItem-isSelected() )
+if ( listViewItem  _qt_listView-selectedItems().count()  0 )
selectOrigItem( listViewItem );
 else
 {

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-02-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-20 16:20:12

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-08 
17:21:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-20 
16:20:13.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection and sorting in Table widget (bnc#746156) 
+- Version: 2.22.3
+
+---

Old:

  yast2-qt-2.22.2.tar.bz2

New:

  yast2-qt-2.22.3.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.fGGh3U/_old  2012-02-20 16:20:14.0 +0100
+++ /var/tmp/diff_new_pack.fGGh3U/_new  2012-02-20 16:20:14.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.2
+Version:2.22.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.2.tar.bz2
+Source0:yast2-qt-2.22.3.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.2.tar.bz2 - yast2-qt-2.22.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/VERSION.cmake 
new/yast2-qt-2.22.3/VERSION.cmake
--- old/yast2-qt-2.22.2/VERSION.cmake   2012-02-08 14:54:52.0 +0100
+++ new/yast2-qt-2.22.3/VERSION.cmake   2012-02-17 16:18:32.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 2)
+SET(VERSION_PATCH 3)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/package/yast2-qt.changes 
new/yast2-qt-2.22.3/package/yast2-qt.changes
--- old/yast2-qt-2.22.2/package/yast2-qt.changes2012-02-08 
14:54:52.0 +0100
+++ new/yast2-qt-2.22.3/package/yast2-qt.changes2012-02-17 
16:18:32.0 +0100
@@ -1,4 +1,10 @@
 ---
+Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection and sorting in Table widget (bnc#746156) 
+- Version: 2.22.3
+
+---
 Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
 
 - Fixed bnc#731540: fixed auto-scroll in LogView
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/src/YQTable.cc 
new/yast2-qt-2.22.3/src/YQTable.cc
--- old/yast2-qt-2.22.2/src/YQTable.cc  2012-02-08 14:54:52.0 +0100
+++ new/yast2-qt-2.22.3/src/YQTable.cc  2012-02-17 16:18:32.0 +0100
@@ -95,6 +95,7 @@
 
 _qt_listView-setHeaderLabels( headers );
 _qt_listView-header()-setResizeMode( QHeaderView::Interactive );
+_qt_listView-sortItems( 0, Qt::AscendingOrder);
 
 
 //
@@ -216,8 +217,6 @@
 if ( sel )
YQTable::selectItem( sel, true );
 
-_qt_listView-sortItems( 0, Qt::AscendingOrder);
-
 for ( int i=0; i  columns(); i++ )
_qt_listView-resizeColumnToContents( i );
 }
@@ -297,7 +296,7 @@
 void
 YQTable::slotSelected( QTreeWidgetItem * listViewItem  )
 {
-if ( listViewItem )
+if ( listViewItem  listViewItem-isSelected() )
selectOrigItem( listViewItem );
 else
 {

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-08 17:21:56

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-12-22 
13:19:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-08 
17:21:58.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
+
+- Fixed bnc#731540: fixed auto-scroll in LogView
+- Version: 2.22.2
+
+---

Old:

  yast2-qt-2.22.1.tar.bz2

New:

  yast2-qt-2.22.2.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.T1regw/_old  2012-02-08 17:21:59.0 +0100
+++ /var/tmp/diff_new_pack.T1regw/_new  2012-02-08 17:21:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-qt
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.1
+Version:2.22.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.1.tar.bz2
+Source0:yast2-qt-2.22.2.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.1.tar.bz2 - yast2-qt-2.22.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/VERSION.cmake 
new/yast2-qt-2.22.2/VERSION.cmake
--- old/yast2-qt-2.22.1/VERSION.cmake   2011-12-20 16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/VERSION.cmake   2012-02-08 14:54:52.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 22)
-SET(VERSION_PATCH 1)
+SET(VERSION_PATCH 2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/package/yast2-qt.changes 
new/yast2-qt-2.22.2/package/yast2-qt.changes
--- old/yast2-qt-2.22.1/package/yast2-qt.changes2011-12-20 
16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/package/yast2-qt.changes2012-02-08 
14:54:52.0 +0100
@@ -1,4 +1,10 @@
 ---
+Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
+
+- Fixed bnc#731540: fixed auto-scroll in LogView
+- Version: 2.22.2
+
+---
 Tue Dec 20 16:30:28 CET 2011 - tgoettlic...@suse.de
 
 - Confirmed license
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/src/YQLogView.cc 
new/yast2-qt-2.22.2/src/YQLogView.cc
--- old/yast2-qt-2.22.1/src/YQLogView.cc2011-12-20 16:32:18.0 
+0100
+++ new/yast2-qt-2.22.2/src/YQLogView.cc2012-02-08 14:54:52.0 
+0100
@@ -73,7 +73,7 @@
 YUI_CHECK_NEW( _caption );
 layout-addWidget( _caption );
 
-_qt_text = new QTextEdit( this );
+_qt_text = new MyTextEdit( this );
 YUI_CHECK_NEW( _qt_text );
 layout-addWidget( _qt_text );
 
@@ -82,6 +82,9 @@
 _qt_text-setSizePolicy( QSizePolicy( QSizePolicy::Expanding, 
QSizePolicy::Expanding ) );
 
 _caption-setBuddy( _qt_text );
+
+connect (_qt_text, SIGNAL(resized()), this, SLOT(slotResize()));
+
 }
 
 
@@ -119,6 +122,7 @@
 {
 _qt_text-moveCursor( QTextCursor::End );
 _qt_text-ensureCursorVisible();
+  sb-setValue( sb-maximum() );
 }
 
 _lastText = newString;
@@ -163,6 +167,20 @@
 return max( 80, hintHeight );
 }
 
+void
+YQLogView::slotResize()
+{
+QScrollBar *sb = _qt_text-verticalScrollBar();
+
+bool atEnd = sb-value() == sb-maximum();
+
+if (atEnd)
+{
+_qt_text-moveCursor( QTextCursor::End );
+_qt_text-ensureCursorVisible();
+sb-setValue( sb-maximum() );
+}
+}
 
 void
 YQLogView::setSize( int newWidth, int newHeight )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/src/YQLogView.h 
new/yast2-qt-2.22.2/src/YQLogView.h
--- old/yast2-qt-2.22.1/src/YQLogView.h 2011-12-20 16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/src/YQLogView.h 2012-02-08 14:54:52.0 +0100
@@ -49,6 +49,8 @@
 #include YLogView.h
 
 class YQWidgetCaption;
+class MyTextEdit;
+
 
 
 class YQLogView : public QFrame, public 

commit yast2-qt for openSUSE:Factory

2011-12-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2011-12-22 13:19:33

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-12-07 
21:41:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2011-12-22 
13:19:35.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec 20 16:30:28 CET 2011 - tgoettlic...@suse.de
+
+- Confirmed license
+- V 2.22.1
+
+---

Old:

  yast2-qt-2.22.0.tar.bz2

New:

  yast2-qt-2.22.1.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.HwV5iq/_old  2011-12-22 13:19:36.0 +0100
+++ /var/tmp/diff_new_pack.HwV5iq/_new  2011-12-22 13:19:36.0 +0100
@@ -18,13 +18,13 @@
 
 
 Name:   yast2-qt
-Version:2.22.0
+Version:2.22.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.0.tar.bz2
+Source0:yast2-qt-2.22.1.tar.bz2
 Group:  System/YaST
-License:GPL-2.0+
+License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel
@@ -102,6 +102,7 @@
 %dir %_libdir/YaST2
 %_libdir/YaST2/plugin/
 %_prefix/share/YaST2/data/lang_fonts
+%doc COPYING.GPL2
 
 %files devel
 %defattr (-, root, root)

++ yast2-qt-2.22.0.tar.bz2 - yast2-qt-2.22.1.tar.bz2 ++
 6559 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-12-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2011-12-07 21:41:17

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is yast2-qt, Maintainer is tgoettlic...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-10-04 
18:02:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2011-12-07 
21:41:27.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec  1 17:46:33 CET 2011 - tgoettlic...@suse.de
+
+- Follow links to anchors in YQTextBrowser (bnc #727330)
+- V 2.22.0
+
+---

Old:

  yast2-qt-2.21.7.tar.bz2

New:

  yast2-qt-2.22.0.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.5EnyJm/_old  2011-12-07 21:41:29.0 +0100
+++ /var/tmp/diff_new_pack.5EnyJm/_new  2011-12-07 21:41:29.0 +0100
@@ -18,13 +18,13 @@
 
 
 Name:   yast2-qt
-Version:2.21.7
+Version:2.22.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.7.tar.bz2
+Source0:yast2-qt-2.22.0.tar.bz2
 Group:  System/YaST
-License:GPL v2 or later
+License:GPL-2.0+
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel

++ yast2-qt-2.21.7.tar.bz2 - yast2-qt-2.22.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/VERSION.cmake 
new/yast2-qt-2.22.0/VERSION.cmake
--- old/yast2-qt-2.21.7/VERSION.cmake   2011-10-04 10:32:24.0 +0200
+++ new/yast2-qt-2.22.0/VERSION.cmake   2011-12-01 17:50:01.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
-SET(VERSION_MINOR 21)
-SET(VERSION_PATCH 7)
+SET(VERSION_MINOR 22)
+SET(VERSION_PATCH 0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/package/yast2-qt.changes 
new/yast2-qt-2.22.0/package/yast2-qt.changes
--- old/yast2-qt-2.21.7/package/yast2-qt.changes2011-10-04 
10:32:24.0 +0200
+++ new/yast2-qt-2.22.0/package/yast2-qt.changes2011-12-01 
17:50:01.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Dec  1 17:46:33 CET 2011 - tgoettlic...@suse.de
+
+- Follow links to anchors in YQTextBrowser (bnc #727330)
+- V 2.22.0
+
+---
 Tue Oct  4 10:25:15 CEST 2011 - tgoettlic...@suse.de
 
 - Don't overwrite wizard's dialog title
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/src/YQRichText.cc 
new/yast2-qt-2.22.0/src/YQRichText.cc
--- old/yast2-qt-2.21.7/src/YQRichText.cc   2011-10-04 10:32:24.0 
+0200
+++ new/yast2-qt-2.22.0/src/YQRichText.cc   2011-12-01 17:50:01.0 
+0100
@@ -235,6 +235,16 @@
 return true;
 }
 
+void YQTextBrowser::setSource( const QUrl  name )
+{
+// scroll to link if it's available in the current document
+// but prevent loading empty pages
+
+if ( name.toString().startsWith(#) )
+   scrollToAnchor( name.toString().mid(1) );
+
+}
+
 
 
 #include YQRichText.moc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/src/YQRichText.h 
new/yast2-qt-2.22.0/src/YQRichText.h
--- old/yast2-qt-2.21.7/src/YQRichText.h2011-10-04 10:32:24.0 
+0200
+++ new/yast2-qt-2.22.0/src/YQRichText.h2011-12-01 17:50:01.0 
+0100
@@ -189,7 +189,7 @@
  * Reimplemented from QTextBrowser to avoid having an empty text each time
  * the user clicks on a hyperlink.
  **/
-virtual void setSource( const QUrl  name ) {}
+virtual void setSource( const QUrl  name );
 };
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/yast2-qt.spec.in 
new/yast2-qt-2.22.0/yast2-qt.spec.in
--- old/yast2-qt-2.21.7/yast2-qt.spec.in2011-10-04 10:32:24.0 
+0200
+++ new/yast2-qt-2.22.0/yast2-qt.spec.in2011-12-01 17:50:01.0 
+0100
@@ -3,7 +3,7 @@
 
 @HEADER@
 Group: System/YaST
-License: GPL v2 or later
+License: GPL-2.0+
 BuildRequires: docbook-xsl-stylesheets 
 BuildRequires: doxygen 
 BuildRequires: libdrm-devel 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-09-23 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Fri Sep 23 10:38:30 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-05-18 17:05:50.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-09-22 
16:14:50.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep 22 14:11:45 UTC 2011 - co...@suse.com
+
+- require yast2-qt-branding
+
+---
+Tue Sep 20 14:46:27 CEST 2011 - tgoettlic...@suse.de
+
+- respect stylesheets in dialogs
+- V 2.21.5
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.4.tar.bz2

New:

  yast2-qt-2.21.5.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.1XVexF/_old  2011-09-23 10:38:24.0 +0200
+++ /var/tmp/diff_new_pack.1XVexF/_new  2011-09-23 10:38:24.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.4
-Release:1
+Version:2.21.5
+Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.4.tar.bz2
+Source0:yast2-qt-2.21.5.tar.bz2
 Group:  System/YaST
 License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets
@@ -45,13 +45,12 @@
 Requires:   yast2-libyui  = 2.21.1
 Requires:   yast2_theme = 2.16.1
 Requires:   yast2-branding
+Requires:   yast2-qt-branding
 Provides:   yast2_ui
 Provides:   y2base:/usr/lib/YaST2/servers/qt
 Provides:   y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2
 Provides:   yast2-ui-qt yast2-ui-qt-devel
 Obsoletes:  yast2-ui-qt yast2-ui-qt-devel
-Provides:   y2qt
-Obsoletes:  y2qt
 Recommends: yast2-qt-pkg
 Recommends: xorg-x11-fonts
 
@@ -60,7 +59,6 @@
 X Window System.
 
 %package devel
-
 Summary:Development package for graphical YaST2 user interfaces
 Group:  Development/Libraries/YaST
 Requires:   yast2-qt = %{version}
@@ -91,7 +89,7 @@
   -DCMAKE_BUILD_TYPE=Release \
   -DCMAKE_SKIP_RPATH=1 \
   ..
-make %{?jobs:-j %jobs} VERBOSE=1
+make %{?_smp_mflags} VERBOSE=1
 
 %install
 cd build

++ yast2-qt-2.21.4.tar.bz2 - yast2-qt-2.21.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/VERSION.cmake 
new/yast2-qt-2.21.5/VERSION.cmake
--- old/yast2-qt-2.21.4/VERSION.cmake   2011-05-18 17:05:33.0 +0200
+++ new/yast2-qt-2.21.5/VERSION.cmake   2011-09-20 14:47:06.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 21)
-SET(VERSION_PATCH 4)
+SET(VERSION_PATCH 5)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/package/yast2-qt.changes 
new/yast2-qt-2.21.5/package/yast2-qt.changes
--- old/yast2-qt-2.21.4/package/yast2-qt.changes2011-05-18 
17:05:33.0 +0200
+++ new/yast2-qt-2.21.5/package/yast2-qt.changes2011-09-20 
14:47:06.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Sep 20 14:46:27 CEST 2011 - tgoettlic...@suse.de
+
+- respect stylesheets in dialogs
+- V 2.21.5
+
+---
 Wed May 18 17:04:43 CEST 2011 - tgoettlic...@suse.de
 
 - Fixed selection in tree widgets (bnc #680107)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/src/QY2HelpDialog.cc 
new/yast2-qt-2.21.5/src/QY2HelpDialog.cc
--- old/yast2-qt-2.21.4/src/QY2HelpDialog.cc2011-05-18 17:05:33.0 
+0200
+++ new/yast2-qt-2.21.5/src/QY2HelpDialog.cc2011-09-20 14:47:06.0 
+0200
@@ -44,6 +44,8 @@
 #include QTextObject
 #include YQi18n.h
 #include YQUI.h
+#include QY2Styler.h
+
 
 #include icons/viewmag.xpm
 
@@ -75,6 +77,8 @@
 
 // Close button for wizard help window
 _ui-pushButton-setText( _( Close ) );
+
+QY2Styler::styler()-registerWidget( this );
 }
 
 void QY2HelpDialog::setHelpText( const QString helpText )
@@ -86,6 +90,7 @@
 
 QY2HelpDialog::~QY2HelpDialog()
 {
+QY2Styler::styler()-unregisterWidget( this );
 delete _ui;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/src/YQDialog.cc 
new/yast2-qt-2.21.5/src/YQDialog.cc
--- old/yast2-qt-2.21.4/src/YQDialog.cc 2011-05-18 17:05:33.0 +0200
+++ new/yast2-qt-2.21.5/src/YQDialog.cc 2011-09-20 14:47:06.0 +0200
@@ -129,6 +129,8 @@
 
 QObject::connect( _waitForEventTimer,  SIGNAL( timeout()  
),
  this, SLOT  ( waitForEventTimeout() ) 
);
+
+QY2Styler::styler()-registerWidget( this );
 }
 
 
@@ -148,6 +150,8 @@
 
 if ( _styleEditor )

commit yast2-qt for openSUSE:Factory

2011-05-19 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Thu May 19 09:36:10 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-28 14:55:17.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-05-18 
17:05:50.0 +0200
@@ -1,0 +2,6 @@
+Wed May 18 17:04:43 CEST 2011 - tgoettlic...@suse.de
+
+- Fixed selection in tree widgets (bnc #680107)
+- V 2.21.4
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.3.tar.bz2

New:

  yast2-qt-2.21.4.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.kWfQEV/_old  2011-05-19 09:35:44.0 +0200
+++ /var/tmp/diff_new_pack.kWfQEV/_new  2011-05-19 09:35:44.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   yast2-qt
-Version:2.21.3
+Version:2.21.4
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.3.tar.bz2
+Source0:yast2-qt-2.21.4.tar.bz2
 Group:  System/YaST
-License:GPLv2+
+License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel
@@ -60,7 +60,7 @@
 X Window System.
 
 %package devel
-License:GPLv2+
+
 Summary:Development package for graphical YaST2 user interfaces
 Group:  Development/Libraries/YaST
 Requires:   yast2-qt = %{version}

++ yast2-qt-2.21.3.tar.bz2 - yast2-qt-2.21.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/VERSION.cmake 
new/yast2-qt-2.21.4/VERSION.cmake
--- old/yast2-qt-2.21.3/VERSION.cmake   2011-04-28 14:55:03.0 +0200
+++ new/yast2-qt-2.21.4/VERSION.cmake   2011-05-18 17:05:33.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 21)
-SET(VERSION_PATCH 3)
+SET(VERSION_PATCH 4)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/package/yast2-qt.changes 
new/yast2-qt-2.21.4/package/yast2-qt.changes
--- old/yast2-qt-2.21.3/package/yast2-qt.changes2011-04-28 
14:55:03.0 +0200
+++ new/yast2-qt-2.21.4/package/yast2-qt.changes2011-05-18 
17:05:33.0 +0200
@@ -1,4 +1,10 @@
 ---
+Wed May 18 17:04:43 CEST 2011 - tgoettlic...@suse.de
+
+- Fixed selection in tree widgets (bnc #680107)
+- V 2.21.4
+
+---
 Thu Apr 28 14:54:04 CEST 2011 - tgoettlic...@suse.de
 
 - Enable shadow for wizard title
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/src/YQTree.cc 
new/yast2-qt-2.21.4/src/YQTree.cc
--- old/yast2-qt-2.21.3/src/YQTree.cc   2011-04-28 14:55:03.0 +0200
+++ new/yast2-qt-2.21.4/src/YQTree.cc   2011-05-18 17:05:33.0 +0200
@@ -355,6 +355,14 @@
 
 void YQTree::slotSelectionChanged( )
 {
+QListQTreeWidgetItem * items = _qt_treeWidget-selectedItems ();
+
+if ( ! hasMultiSelection()  ! items.empty() )
+{
+QTreeWidgetItem *qItem = items.first();
+selectItem( dynamic_castYQTreeItem * (qItem) );
+}
+
 
 if ( notify()  ! YQUI::ui()-eventPendingFor( this ) )
YQUI::ui()-sendEvent( new YWidgetEvent( this, YEvent::SelectionChanged 
) );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/src/YQTree.cc_backup 
new/yast2-qt-2.21.4/src/YQTree.cc_backup
--- old/yast2-qt-2.21.3/src/YQTree.cc_backup1970-01-01 01:00:00.0 
+0100
+++ new/yast2-qt-2.21.4/src/YQTree.cc_backup2011-05-18 17:05:33.0 
+0200
@@ -0,0 +1,520 @@
+/**
+Copyright (C) 2000 - 2010 Novell, Inc.
+All Rights Reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along
+with this program; if not, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+**/
+
+
+/*-\
+|

commit yast2-qt for openSUSE:Factory

2011-04-29 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Fri Apr 29 12:39:32 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-21 11:08:11.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-04-28 
14:55:17.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 28 14:54:04 CEST 2011 - tgoettlic...@suse.de
+
+- Enable shadow for wizard title
+- V 2.21.3
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.2.tar.bz2

New:

  yast2-qt-2.21.3.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.UCI4AN/_old  2011-04-29 12:39:00.0 +0200
+++ /var/tmp/diff_new_pack.UCI4AN/_new  2011-04-29 12:39:00.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.2
+Version:2.21.3
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.2.tar.bz2
+Source0:yast2-qt-2.21.3.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.21.2.tar.bz2 - yast2-qt-2.21.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.2/VERSION.cmake 
new/yast2-qt-2.21.3/VERSION.cmake
--- old/yast2-qt-2.21.2/VERSION.cmake   2011-04-21 15:32:06.0 +0200
+++ new/yast2-qt-2.21.3/VERSION.cmake   2011-04-28 14:55:03.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
 SET(VERSION_MINOR 21)
-SET(VERSION_PATCH 2)
+SET(VERSION_PATCH 3)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.2/package/yast2-qt.changes 
new/yast2-qt-2.21.3/package/yast2-qt.changes
--- old/yast2-qt-2.21.2/package/yast2-qt.changes2011-04-21 
15:32:06.0 +0200
+++ new/yast2-qt-2.21.3/package/yast2-qt.changes2011-04-28 
14:55:03.0 +0200
@@ -1,4 +1,10 @@
 ---
+Thu Apr 28 14:54:04 CEST 2011 - tgoettlic...@suse.de
+
+- Enable shadow for wizard title
+- V 2.21.3
+
+---
 Thu Apr 21 11:05:49 CEST 2011 - tgoettlic...@suse.de
 
 - Cleaned-up fix for line breaks in LogView (bnc #684759)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.2/src/YQWizard.cc 
new/yast2-qt-2.21.3/src/YQWizard.cc
--- old/yast2-qt-2.21.2/src/YQWizard.cc 2011-04-21 15:32:06.0 +0200
+++ new/yast2-qt-2.21.3/src/YQWizard.cc 2011-04-28 14:55:03.0 +0200
@@ -96,7 +96,7 @@
 
 #define USE_ICON_ON_HELP_BUTTON0
 
-//#define SHADOW_WORKAROUND1
+#define SHADOW_WORKAROUND  1
 
 YQWizard *YQWizard::main_wizard = 0;
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-04-20 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Wed Apr 20 13:54:21 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-12 16:36:51.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-04-18 
16:28:55.0 +0200
@@ -1,0 +2,13 @@
+Mon Apr 18 16:16:59 CEST 2011 - tgoettlic...@suse.de
+
+- Enable busy cursor for tree widget during time consuming 
+  operations
+- V 2.21.1
+
+---
+Fri Apr 15 16:20:11 CEST 2011 - tgoettlic...@suse.de
+
+- Added support for recursive selection in tree widgets
+- V 2.20.8
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.20.7.tar.bz2

New:

  yast2-qt-2.21.1.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.E66zxe/_old  2011-04-20 13:54:07.0 +0200
+++ /var/tmp/diff_new_pack.E66zxe/_new  2011-04-20 13:54:07.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.20.7
+Version:2.21.1
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.20.7.tar.bz2
+Source0:yast2-qt-2.21.1.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets
@@ -41,8 +41,8 @@
 Summary:YaST2 - Graphical User Interface
 BuildRequires:  yast2-devtools = 2.16.3
 #YIconLoader
-BuildRequires:  yast2-libyui-devel = 2.20.2
-Requires:   yast2-libyui  = 2.20.2
+BuildRequires:  yast2-libyui-devel = 2.21.1
+Requires:   yast2-libyui  = 2.21.1
 Requires:   yast2_theme = 2.16.1
 Requires:   yast2-branding
 Provides:   yast2_ui

++ yast2-qt-2.20.7.tar.bz2 - yast2-qt-2.21.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.7/VERSION.cmake 
new/yast2-qt-2.21.1/VERSION.cmake
--- old/yast2-qt-2.20.7/VERSION.cmake   2011-04-12 16:36:29.0 +0200
+++ new/yast2-qt-2.21.1/VERSION.cmake   2011-04-19 12:21:08.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR 2)
-SET(VERSION_MINOR 20)
-SET(VERSION_PATCH 7)
+SET(VERSION_MINOR 21)
+SET(VERSION_PATCH 1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.7/package/yast2-qt.changes 
new/yast2-qt-2.21.1/package/yast2-qt.changes
--- old/yast2-qt-2.20.7/package/yast2-qt.changes2011-04-12 
16:36:30.0 +0200
+++ new/yast2-qt-2.21.1/package/yast2-qt.changes2011-04-19 
12:21:09.0 +0200
@@ -1,4 +1,17 @@
 ---
+Mon Apr 18 16:16:59 CEST 2011 - tgoettlic...@suse.de
+
+- Enable busy cursor for tree widget during time consuming 
+  operations
+- V 2.21.1
+
+---
+Fri Apr 15 16:20:11 CEST 2011 - tgoettlic...@suse.de
+
+- Added support for recursive selection in tree widgets
+- V 2.20.8
+
+---
 Tue Apr 12 16:33:56 CEST 2011 - tgoettlic...@suse.de
 
 - Fixed line breaks in LogView (bnc #684759)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.7/src/YQTree.cc 
new/yast2-qt-2.21.1/src/YQTree.cc
--- old/yast2-qt-2.20.7/src/YQTree.cc   2011-04-12 16:36:29.0 +0200
+++ new/yast2-qt-2.21.1/src/YQTree.cc   2011-04-19 12:21:08.0 +0200
@@ -63,9 +63,9 @@
 #define VERBOSE_TREE_ITEMS 0
 
 
-YQTree::YQTree( YWidget * parent, const string  label, bool 
multiSelectionMode  )
+YQTree::YQTree( YWidget * parent, const string  label, bool 
multiSelectionMode, bool recursiveSelectionMode  )
 : QFrame( (QWidget *) parent-widgetRep() )
-, YTree( parent, label, multiSelectionMode )
+, YTree( parent, label, multiSelectionMode, recursiveSelectionMode )
 {
 QVBoxLayout* layout = new QVBoxLayout( this );
 setLayout( layout );
@@ -101,8 +101,11 @@
 connect( _qt_treeWidget,   SIGNAL( itemClicked ( QTreeWidgetItem *, int ) 
),
 this,  SLOT  ( slotItemClicked ( QTreeWidgetItem *, 
int ) ) );
 
+//connect( _qt_treeWidget, SIGNAL( itemChanged ( QTreeWidgetItem *, int ) 
),
+//  this,  SLOT  ( slotItemChanged () ) );
+
 connect( _qt_treeWidget,   SIGNAL( itemChanged ( QTreeWidgetItem *, int ) 
),
-this,  SLOT  ( slotItemChanged () ) );
+this,  SLOT  ( slotItemChanged (QTreeWidgetItem *) ) );
 
 connect( _qt_treeWidget,   SIGNAL( itemDoubleClicked( QTreeWidgetItem *, 
int ) ),
 this,  SLOT  ( slotActivated( QTreeWidgetItem *
  ) ) );
@@ -276,24 +279,48 @@
 }
 
 
-void YQTree::slotItemChanged( )