Source Code (Use browser search to find items of interest.)
Class Index
kppp'AboutWidget (./kdenetwork/kppp/general.h:159)
class AboutWidget : public KGroupBox {
Q_OBJECT
public:
AboutWidget( QWidget *parent=0, const char *name=0 );
};
kppp'AboutWidget::AboutWidget() (./kdenetwork/kppp/general.cpp:204)
AboutWidget::AboutWidget( QWidget *parent, const char *name)
: KGroupBox(i18n("About kppp"), parent, name)
{
QVBoxLayout *tl = new QVBoxLayout(peer(), 10);
QLabel *label1 = new QLabel(peer());
label1->setAlignment(AlignLeft|ExpandTabs);
QString string;
string = "kppp "KPPPVERSION;
string += i18n("\nA dialer and front-end to pppd\n\n"
"(c) 1997, 1998\n"
" Bernd Johannes Wuebben <wuebben@kde.org>\n"
" Harri Porten <porten@kde.org>\n"
" Mario Weilguni <mweilguni@kde.org>\n\n"
"Original author: Bernd Johannes Wuebben\n"
"Currently maintained by Harri Porten and Mario\n"
"Weilguni. Please send all bug reports to the\n"
"current maintainer.\n\n"
"This program is distributed under the GNU GPL\n"
"(GNU General Public License)."
);
label1->setText(string);
label1->setMinimumSize(label1->sizeHint());
tl->addWidget(label1);
tl->activate();
}