pkg://kdebase-3.5.7.tar.bz2:24395088/
kdebase-3.5.7/
ksmserver/test.cpp
downloads
#include "shutdowndlg.h"
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kapplication.h>
#include <kiconloader.h>
int
main(int argc, char *argv[])
{
KAboutData about("kapptest", "kapptest", "version");
KCmdLineArgs::init(argc, argv, &about);
KApplication a;
a.iconLoader()->addAppDir("ksmserver");
KSMShutdownFeedback::start();
KApplication::ShutdownType sdtype = KApplication::ShutdownTypeNone;
QString bopt;
(void)KSMShutdownDlg::confirmShutdown( true,
sdtype,
bopt );
/* (void)KSMShutdownDlg::confirmShutdown( false,
sdtype,
bopt ); */
KSMShutdownFeedback::stop();
}