[rkward-cvs] SF.net SVN: rkward: [2207] branches/KDE4_port
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Mon Nov 12 21:35:40 UTC 2007
Revision: 2207
http://rkward.svn.sourceforge.net/rkward/?rev=2207&view=rev
Author: tfry
Date: 2007-11-12 13:35:39 -0800 (Mon, 12 Nov 2007)
Log Message:
-----------
Small stuff and some bookkeeping
Modified Paths:
--------------
branches/KDE4_port/CMakeLists.txt
branches/KDE4_port/TODO_KDE4
branches/KDE4_port/doc/en/CMakeLists.txt
branches/KDE4_port/rkward/rkward.cpp
branches/KDE4_port/rkward/windows/detachedwindowcontainer.cpp
Modified: branches/KDE4_port/CMakeLists.txt
===================================================================
--- branches/KDE4_port/CMakeLists.txt 2007-11-12 16:37:01 UTC (rev 2206)
+++ branches/KDE4_port/CMakeLists.txt 2007-11-12 21:35:39 UTC (rev 2207)
@@ -9,9 +9,9 @@
LINK_DIRECTORIES(${KDE4_LIB_DIR})
-ADD_SUBDIRECTORY( rkward )
-ADD_SUBDIRECTORY( po )
-ADD_SUBDIRECTORY( doc )
+ADD_SUBDIRECTORY( rkward )
+ADD_SUBDIRECTORY( po )
+ADD_SUBDIRECTORY( doc )
INCLUDE_DIRECTORIES( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
Modified: branches/KDE4_port/TODO_KDE4
===================================================================
--- branches/KDE4_port/TODO_KDE4 2007-11-12 16:37:01 UTC (rev 2206)
+++ branches/KDE4_port/TODO_KDE4 2007-11-12 21:35:39 UTC (rev 2207)
@@ -2,7 +2,6 @@
- message extraction
- po file handling
- handbook installation
-- need to replace hard-coded "share/apps"?
- icons
- rkward.desktop
- use Configure-File-Makro for wrapperscript
@@ -44,32 +43,16 @@
+ seems to..
- does updating captions work (when switching windows / window url changes)?
+ seems to..
- -* closing rkward while either the file system or the workspace browser is open, crashes rkward
- -* Import/Export (all plugins?) cause segmentation fault.
- + much better now.. no seg faults in preliminary testing (10/27/07)
- -* closing the main window before the "R engine is idle" crashes rkward
- -* related to rkhtmlwindow bug?
+ - probably still need to make data.editor update its caption when name changed
output window
- does it reload all changed images?
- rkworkplaceview
- - does it work?
- - does it have a sunken frame? Can we get rid of that?
-
rkwindowcatcher
- does it work?
- does the "set fixed size" dialog work?
- does the "copy device to R object" dialog work?
-rkfilebrowser
- - does it work?
- + seems to..
- - does the completion popup show up in a correct size?
- + yes, if u mean in the address bar when typing a path
- -* does not work for *.R files
- + Fixed: works for many (ps/eps/pdf/jpg/png) files now...
-
rkloadlibsdialog:
- does it work?
@@ -77,19 +60,11 @@
- does disabling single options work (in plugins)?
rksettings:
- - check wether settings seem to be saved / loaded correctly
- are the defaults ok?
- -* clicking on "Configure Repositories" button on the Configure Packages dialog
- takes you to the "R-Backend" tab on the Settings dialog. Instead it should go
- to the "R-Packages" tab.
- + Fixed, but both "Plugins" and "R-Pacakges" text on the left panel remain selected
- - likely bug in KDE libs
+ + When going to a specific page programmitcally, e.g. "Plugins" and "R-Pacakges" text on the left panel remain selected
+ - likely bug in KDE libs
data editor:
- - definitely needs better porting
- - does cell painting work ok?
- + seems to.. on an existing data.frame
- -* entering data freezes rkward
rklocalesupport:
- does locale switching / detection work? Does Qt have something, yet?
@@ -109,10 +84,6 @@
-* one additional newline character printed with every line
-* function calls, like ls() or getwd() or options("width") still produces an extra new line
-rkhtmlwindow:
- - when this is open, we always seem to crash on close
- -* crashes on close even when the Help window is not open
-
rcontrolwindow:
- this does not really need to be a top-level tool window any more. Since it's rarely used, it might be hidden somewhere.
Modified: branches/KDE4_port/doc/en/CMakeLists.txt
===================================================================
--- branches/KDE4_port/doc/en/CMakeLists.txt 2007-11-12 16:37:01 UTC (rev 2206)
+++ branches/KDE4_port/doc/en/CMakeLists.txt 2007-11-12 21:35:39 UTC (rev 2207)
@@ -1,6 +1,9 @@
INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
+KDE4_CREATE_HANDBOOK( index.docbook )
+#KDE4_CREATE_HANDBOOK( writing_plugins_introduction.docbook )
+
########### install files ###############
Modified: branches/KDE4_port/rkward/rkward.cpp
===================================================================
--- branches/KDE4_port/rkward/rkward.cpp 2007-11-12 16:37:01 UTC (rev 2206)
+++ branches/KDE4_port/rkward/rkward.cpp 2007-11-12 21:35:39 UTC (rev 2207)
@@ -393,9 +393,7 @@
}
// KDE4: remove this function?
-/* part->actionCollection ()->setHighlightingEnabled (true);
- connect (part->actionCollection (), SIGNAL (actionStatusText (const QString &)), this, SLOT (slotSetStatusBarText (const QString &)));
- connect (part->actionCollection (), SIGNAL (clearStatusText ()), this, SLOT (slotSetStatusReady ())); */
+// well, we might use it to add / remove dummy menu-entries to menus that are other wise empty.
}
void RKWardMainWindow::partRemoved (KParts::Part *part) {
@@ -407,8 +405,7 @@
}
// KDE4: remove this function?
-/* disconnect (part->actionCollection (), SIGNAL (actionStatusText (const QString &)), this, SLOT (slotSetStatusBarText (const QString &)));
- disconnect (part->actionCollection (), SIGNAL (clearStatusText ()), this, SLOT (slotSetStatusReady ())); */
+// well, we might use it to add / remove dummy menu-entries to menus that are other wise empty.
}
void RKWardMainWindow::initStatusBar () {
Modified: branches/KDE4_port/rkward/windows/detachedwindowcontainer.cpp
===================================================================
--- branches/KDE4_port/rkward/windows/detachedwindowcontainer.cpp 2007-11-12 16:37:01 UTC (rev 2206)
+++ branches/KDE4_port/rkward/windows/detachedwindowcontainer.cpp 2007-11-12 21:35:39 UTC (rev 2207)
@@ -23,7 +23,6 @@
#include <qlayout.h>
#include <qwidget.h>
-//Added by qt3to4:
#include <QCloseEvent>
#include "rktoplevelwindowgui.h"
@@ -46,7 +45,6 @@
RKTopLevelWindowGUI *toplevel_actions = new RKTopLevelWindowGUI (this);
insertChildClient (toplevel_actions);
- connect (toplevel_actions->actionCollection (), SIGNAL (actionStatusText (const QString &)), this, SLOT (slotSetStatusBarText (const QString &)));
statusBar ()->hide ();
createShellGUI ();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list