


Text Editors by bflat1 18 comments
I installed the emacsextensions plugin, selected it under "Configure Editor"->"Plugins", and got all the entries in KScope's "Edit" menu. - Oct 17 2006
I believe that the name KScope is clear enough, so that users of KDE and Cscope immediately understand the nature of the application.
I do have a couple of ideas for a new name:
- Sourcerer
- Cyndrome
(both spelling mistakes are intentional). However, I'm not sure a name change is adequate at this moment. - Aug 25 2006

System Software by dkukawka 157 comments
3. Yes, the problem was with __u32.
I am unable to compile KPowersave on FC5, but I suspect it's the distro's fault. It seems to be lacking a dbus-qt package. - Apr 20 2006

System Software by dkukawka 157 comments
2. Source distributions normally include a ready-to-use 'configure' file. If you intend to stick with the raw configure.in.in and Makefile.am files, please document it in INSTALL.
3. powersaved fails to compile on my machine. I had to include asm/types.h in brightness.cpp. - Apr 19 2006

System Software by dkukawka 157 comments
It seems to be the same thing as klaptop. - Apr 18 2006

System Software by dkukawka 157 comments
I have recently installed FC5 on a new laptop and tried playing with KDE's battery power configuration (from KDE's control centre). The result was far from satisfactory. I ended up editing scripts in /etc/acpi.
If I install powersave (and KPowersave), how should I set KDE's parameters? - Apr 18 2006
KScope includes no source code from either Qt or graphviz. - Feb 18 2006
None the less, Graphviz has its shortcomings, so I am interested to see what comes out of this project. - Jan 09 2006

Icon Sub-Sets by jiin05 10 comments
P.S.,
This comment has nothing to do with the actual buttons, which are very nice. - Aug 25 2005

Various Stuff by DarkWolf 4 comments
KScope will certainly not support the build tools directly. However, it may be possible to write some perl scripts to parse compiler output and then display the results in a window that allows you quick access to the relevant line. - Jul 05 2005
I actually added this feature to the stable branch, and it was not merged into version 1.3.0.
Here is a patch against the development version. Save it into your kscope-1.3.0 directory, and then run patch -p0 < your_file_name.patch
Index: src/editortabs.cpp
===================================================================
RCS file: /cvsroot/kscope/kscope/src/editortabs.cpp,v
retrieving revision 1.16
diff -U3 -r1.16 editortabs.cpp
--- src/editortabs.cpp 26 May 2005 15:28:18 -0000 1.16
+++ src/editortabs.cpp 2 Jul 2005 01:35:57 -0000
@@ -165,7 +165,7 @@
"save these files?"))) {
case KMessageBox::Yes:
// Save files
- saveAllFiles();
+ slotSaveAll();
break;
case KMessageBox::No:
@@ -419,7 +419,7 @@
/**
* Saves all files open for editing.
*/
-void EditorTabs::saveAllFiles()
+void EditorTabs::slotSaveAll()
{
int i;
Index: src/editortabs.h
===================================================================
RCS file: /cvsroot/kscope/kscope/src/editortabs.h,v
retrieving revision 1.12
diff -U3 -r1.12 editortabs.h
--- src/editortabs.h 9 Feb 2005 00:00:12 -0000 1.12
+++ src/editortabs.h 2 Jul 2005 01:35:57 -0000
@@ -52,6 +52,7 @@
public slots:
void slotRemovePage(QWidget*);
void slotToggleTagList();
+ void slotSaveAll();
signals:
/**
@@ -88,7 +89,6 @@
int m_nNewFiles;
int getModifiedFilesCount();
- void saveAllFiles();
bool removePage(QWidget*, bool);
private slots:
Index: src/kscope.cpp
===================================================================
RCS file: /cvsroot/kscope/kscope/src/kscope.cpp,v
retrieving revision 1.71.2.9
diff -U3 -r1.71.2.9 kscope.cpp
--- src/kscope.cpp 29 Jun 2005 02:50:26 -0000 1.71.2.9
+++ src/kscope.cpp 2 Jul 2005 01:35:57 -0000
@@ -185,9 +185,12 @@
KStdAction::close(this, SLOT(slotCloseEditor()), actionCollection());
KStdAction::quit(this, SLOT(slotClose()), actionCollection());
- (void)new KAction("Go to File List", KShortcut("Ctrl+Shift+O"),
+ (void)new KAction(i18n("Go to File List"), KShortcut("Ctrl+Shift+O"),
m_pFileList, SLOT(slotSetFocus()), actionCollection(),
"file_open_file_from_list");
+ (void)new KAction(i18n("Save Al&l"),
+ "save_all", KShortcut("Ctrl+L"), m_pEditTabs, SLOT(slotSaveAll()),
+ actionCollection(), "file_save_all");
// Edit menu
m_pExtEditAction = new KAction(i18n("Edit in E&xternal Editor"), - Jul 01 2005
Naturally, this is still work in progress, so expect a few glitches. - Jun 13 2005
Nevertheless, I think there is still a place for KScope as a light-weight, non-intrusive and C-centred environment. - Oct 14 2004
Does Gentoo use a different name? If so, let me know, and in the meantime you can just create a link and use it. - Jun 23 2004

Security by michaelbuesch 36 comments
I know of GNU-Keyring, and I have already written a KPilot conduit for it. Unfortunately, Keyring seems to be unmaintained and the current version only supports reading from the Palm device.
PwManager seems like a good password manager. Any chance someone will assume the task of writing a Palm version and a KPilot conduit? - Jun 21 2004
2. As opposed to Eclipse, KScope is light, projects are minimalistic and easy to handle, and it integrates well into KDE.
The above notes by no means suggest that I have anything against Eclipse. It is just that I don't think it delivers the same capabilities as KScope (for better and for worse.)
I don't understand what Visual Cafe or any other Java tool has to do with KScope. - Jun 15 2004