You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kvoctrain/kvoctrain/docprop-dialogs/DocPropLangDlg.cpp

98 lines
2.8 KiB

/***************************************************************************
document language dialog class
-----------------------------------------------------------------------
begin : Sat Jun 2 20:50:53 MET 1999
copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
(C) 2001 The KDE-EDU team
(C) 2005 Peter Hedlund <peter.hedlund@kdemail.net>
-----------------------------------------------------------------------
***************************************************************************
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "DocPropLangDlg.h"
#include "LangPropPage.h"
#include <tqstringlist.h>
#include <tqlayout.h>
#include <tqvaluelist.h>
#include <tqtabwidget.h>
#include <tdeapplication.h>
#include <tdelocale.h>
#include <kstandarddirs.h>
#include <kvoctraindoc.h>
#include <langset.h>
class kvoctraindoc;
DocPropsLangDlg::DocPropsLangDlg(kvoctrainDoc *doc, LangSet *langset, TQWidget *parent, const char *name, bool modal)
:
KDialogBase(Tabbed, i18n("Language Properties"), Ok|Cancel, Ok, parent, name, modal)
{
TQFrame * page;
TQVBoxLayout * topLayout;
LangPropPage* lpp;
for (int i = 0; i < (int) doc->numLangs(); i++)
{
TQString s;
if (i == 0)
s = doc->getOriginalIdent();
else
s = doc->getIdent(i);
int idx = langset->indexShortId(s);
TQString tabCaption;
if (idx >= 0)
tabCaption = (langset->longId(idx));
else
tabCaption = (s);
page = addPage(s, s, TQPixmap(langset->PixMapFile(idx))); ///@todo The pixmaps don't show up in tabbed dialog
topLayout = new TQVBoxLayout( page, 0, KDialog::spacingHint() );
lpp = new LangPropPage (doc, s, doc->getConjugation(i), doc->getArticle(i), page, name);
topLayout->addWidget( lpp );
langPages.append (lpp);
}
}
Conjugation DocPropsLangDlg::getConjugation(int idx) const
{
if (idx < (int) langPages.size())
return langPages[idx]->getConjugation();
else
return Conjugation();
}
Article DocPropsLangDlg::getArticle(int idx) const
{
if (idx < (int) langPages.size() )
return langPages[idx]->getArticle();
else
return Article();
}
#include "DocPropLangDlg.moc"