Source Code (Use browser search to find items of interest.)

Class Index

amor'AmorSessionWidget (./kdetoys/amor/amor.h:97)

class AmorSessionWidget : public QWidget
{
    Q_OBJECT
public:
    AmorSessionWidget();
    ~AmorSessionWidget() {};
public slots:
    void wm_saveyourself();
};

amor'AmorSessionWidget::AmorSessionWidget() (./kdetoys/amor/amor.cpp:652)

AmorSessionWidget::AmorSessionWidget()
{
    // the only function of this widget is to catch & forward the
    // saveYourself() signal from the session manager
    connect(kapp, SIGNAL(saveYourself()), SLOT(wm_saveyourself()));
}
 

amor'AmorSessionWidget::wm_saveyourself() (./kdetoys/amor/amor.cpp:659)

void AmorSessionWidget::wm_saveyourself()
{
    // no action required currently.
}