


Arcade by Mandarancid 10 comments
build something different, and I also like that the construction breaks if you build crap. - Dec 21 2011

Various KDE 1.-4. Improvements by thomas12777 31 comments

Video Apps by gilfcp10 146 comments

Video Apps by gilfcp10 146 comments
http://pastebin.ca/1859263:
/home/cjann/BUILD/KDE Media Player/build/src/../../src/kmpcollectionmodel.h:23:34: error: qt4/QtCore/QModelIndex: No such file or directory
do you see any difference, the "Some improvements" post will help you - Apr 11 2010

Video Apps by gilfcp10 146 comments
yes
> About the icons, when I did that it didn't find the icons (I'm testing on Kubuntu), I guess the problem is in the makefiles...
maybe some issues with the data install dir but I'm no expert
maybe add:
BAddMedia->setIcon(KIcon(KStandardDirs::locate("data", "kmp/icons/kmpadd.png")));
kDebug()<<KStandardDirs::locate("data", "kmp/icons/kmpadd.png");
which prints "kmp(3417) KMP_Base::SetupWindow: "/usr/local/share/apps/kmp/icons/kmpadd.png"" on my machine to the console
you can run kdebugdialog to enable debug output within your app - Apr 11 2010

Video Apps by gilfcp10 146 comments
It won't build under Fedora 12 KDE 4.4.2:
http://pastebin.ca/1859263
But after changing the following includes it compiles just fine:
//#include <qt4/QtCore/QModelIndex>
#include <QModelIndex>
//#include <qt4/QtGui/QMainWindow>
#include <QMainWindow>
//#include <qt4/QtGui/QWidget>
#include <QWidget>
//#include <qt4/QtGui/QScrollArea>
#include <QScrollArea>
//#include <Phonon/effect.h>
#include <Phonon/Effect>
//#include <Phonon/SubtitleDescription>
Now only some icons are missing: icons/kmpadd.png icons/kmpremove.png icons/kmpfullscreen.png icons/kmpfullwindow.png icons/kmpsound.png
for example:
replace: BaddMedia->setIcon(KIcon("/share/apps/kmp/icons/kmpadd.png"));
with:
#include <KstandardDirs>
BAddMedia->setIcon(KIcon(KStandardDirs::locate("data", "kmp/icons/kmpadd.png")));
now the icon is found - Apr 11 2010