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

Class Index

knotes'sessionWidget (./kdeutils/knotes/knotes.h:219)

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

knotes'sessionWidget::sessionWidget() (./kdeutils/knotes/knotes.cpp:1495)

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


knotes'sessionWidget::wm_saveyourself() (./kdeutils/knotes/knotes.cpp:1502)

void sessionWidget::wm_saveyourself() 
{
  savealarms();
  writeSettings();

  for(KPostit::PostitList.first();KPostit::PostitList.current();
      KPostit::PostitList.next())

    KPostit::PostitList.current()->savenotes();
}

int