CVS commit by mornfall:
Further improvements for errordialog...
M +8 -2 errordialog.cpp 1.6
--- kdenonbeta/kdedebian/kapture/libkapture/errordialog.cpp #1.5:1.6
@@ -14,7 +14,13 @@ ErrorDialog::ErrorDialog (QWidget *paren
: KDialogBase (parent, name, true, "Errors and War
CVS commit by mornfall:
Try to hack in support for open-in-new tab. Work in progress, doesn't
work :/.
M +1 -0 listtreeview.cpp 1.22
M +1 -0 treeview.h 1.9
--- kdenonbeta/kdedebian/kapture/libkapture/listtreeview.cpp #1.21:1.22
@@ -24,4 +24,5 @@ ListTreeView::ListTre
CVS commit by mornfall:
Set a sensible minimum size on the error dialog...
M +1 -0 errordialog.cpp 1.4
--- kdenonbeta/kdedebian/kapture/libkapture/errordialog.cpp #1.3:1.4
@@ -14,4 +14,5 @@ ErrorDialog::ErrorDialog (QWidget *paren
{
KListBox *b = new KListBox (this);
+b
CVS commit by mornfall:
More work on the ui... It's slowly getting into shape ;).
M +6 -3 acqprogresswidgetui.ui 1.3
M +2 -2 pkgcelemview.cpp 1.14
M +6 -73 pkgcelemviewcommonui.ui 1.4
M +52 -41pkgcelemviewdetailsui.ui 1.5
CVS commit by mornfall:
Fix a segfault when creating SummaryView before loading cache (affected
kurrent, made it segfault on load).
M +2 -2 summaryview.cpp 1.9
--- kdenonbeta/kdedebian/kapture/libkapture/summaryview.cpp #1.8:1.9
@@ -17,6 +17,6 @@ SummaryView::SummaryView (QWidget
CVS commit by mornfall:
Make KaptureManager::commit only reload cache when neccessary (that is,
commit error).
M +3 -2 kapturemanager.cpp 1.31
--- kdenonbeta/kdedebian/kapture/libkapture/kapturemanager.cpp #1.30:1.31
@@ -67,7 +67,8 @@ void KaptureManager::commit (void
CVS commit by mornfall:
Slight cleanup of KaptureManager header.
M +1 -4 kapturemanager.h 1.15
--- kdenonbeta/kdedebian/kapture/libkapture/kapturemanager.h #1.14:1.15
@@ -31,5 +31,4 @@ namespace kapture {
class KaptureManager: public QObject
-// XXX: change pkgCache
CVS commit by mornfall:
DPkgPM doesn't need to be a QObject...
M +2 -2 dpkgpm.cpp 1.11
M +3 -4 dpkgpm.h 1.7
--- kdenonbeta/kdedebian/kapture/libkapture/dpkgpm.cpp #1.10:1.11
@@ -97,8 +97,8 @@ bool kapture::DPkgPM::forkScript (const
}
-void kapture::DPkgPM::dpk
CVS commit by mornfall:
Reduce minimal height. Still doesn't seem to fit 800x600. Grr.
M +1 -1 listtreeviewui.ui 1.4
--- kdenonbeta/kdedebian/kapture/libkapture/listtreeviewui.ui #1.3:1.4
@@ -112,5 +112,5 @@
400
-
CVS commit by mornfall:
Shorten the page-captions on PkgCElemView januswidget.
M +2 -2 pkgcelemview.cpp 1.10
--- kdenonbeta/kdedebian/kapture/libkapture/pkgcelemview.cpp #1.9:1.10
@@ -65,7 +65,7 @@ PkgCElemView::PkgCElemView (QWidget *par
TreeViewFactory PVF;
-w
CVS commit by mornfall:
The context menu is now context-sensitive. Installing anything but packages
makes little sense. I might add "install all" for sections, will see...
M +5 -3 listtreewidget.cpp 1.30
--- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp
CVS commit by mornfall:
Add keep to the ListTreeWidget context menu. Fix progresswidget minimal
height.
M +8 -0 listtreewidget.cpp 1.29
M +1 -0 listtreewidget.h 1.19
M +2 -2 progresswidgetui.ui 1.4
--- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp
+5 -0 listtreewidget.h 1.18
--- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.27:1.28
@@ -1,4 +1,6 @@
// -*- Mode: C++; c-basic-offset: 4; -*-
// includes {{{
+#include
+
#include
#include
@@ -154,4 +156,7 @@ ListTreeWidget::ListTreeWidget (QWidget
connect (this
CVS commit by mornfall:
Add the new files as well. Eww. Uga is responsible for me missing
those! :P
Aprogresswidget.cpp 1.1 [no copyright]
Aprogresswidget.h 1.1 [LGPL (v2+)]
Aprogresswidgetui.ui 1.1
CVS commit by mornfall:
Optimize tree refreshing (in libkapture now) further. We nearly beat
synaptic on install/deinstall marking performance now. :D.
M +20 -14listtreewidget.cpp 1.27
M +1 -0 listtreewidget.h 1.17
--- kdenonbeta/kdedebian/kapture/libkapture
w.h 1.8
--- kdenonbeta/kdedebian/kapture/libkapture/celemview.cpp #1.5:1.6
@@ -28,21 +28,4 @@ CElemView *CElemViewFactory::create (QWi
}
-QString kapture::cElemTooltip (CElemPtr _e)
-{
-QString str;
-if (pkgCElem (_e)) {
-PkgCElemPtr e = pkgCElem (_e);
-str . append (QStr
CVS commit by mornfall:
First iteration of ListTreeWidget tooltips. Works, just needs tooltip
content. Try to make this reusable ;).
M +13 -0 listtreewidget.cpp 1.24
M +13 -0 listtreewidget.h 1.16
--- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.23:1.24
CVS commit by mornfall:
Support PkgUpgrade state in PkgNodeView and ListTreeWidget as well.
M +2 -0 listtreewidget.cpp 1.14
M +2 -0 pkgnodeview.cpp 1.19
--- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.13:1.14
@@ -109,4 +109,6 @@ void ListTreeWidgetPItem
CVS commit by mornfall:
- implement AcqProgress::Fail () [not tested yet]
- fix the summary widget (widget naming fuckage happened)
- make the AcqProgress scroll down as items are added; YAY! :)
M +26 -27acqprogress.cpp 1.14
M +4 -4 summaryview.cpp 1.3
M +9 -9 summaryvie
CVS commit by mornfall:
Add missing files. They got lost in some commit few days ago. Aww.
Aerrordialog.cpp 1.1 [no copyright]
Aerrordialog.h 1.1 [UNKNOWN]
CVS commit by mornfall:
Fix the crash in PkgNodeView with useExtState () == false, on display.
Still needs work to display right controls and start right actions
depending on useExtState ().
M +23 -20pkgnodeview.cpp 1.11
--- kdenonbeta/kdedebian/kapture/libkapture/pkgnodeview.cpp
CVS commit by mornfall:
Make the progress dialog more reasonable (but it's still broken).
M +12 -8 acqprogress.cpp 1.5
--- kdenonbeta/kdedebian/kapture/libkapture/acqprogress.cpp #1.4:1.5
@@ -156,5 +156,8 @@ kapture::AcqStatus::AcqStatus(QWidget *p
void kapture::AcqStatus:
22 matches
Mail list logo