Remove the tq in front of these incorrectly TQt4-converted methods/data members:

tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 2595a15ebe
commit feaf6d62da

@ -25,21 +25,21 @@
using Tellico::BorrowerDialog; using Tellico::BorrowerDialog;
BorrowerDialog::Item::Item(KListView* tqparent_, const KABC::Addressee& add_) BorrowerDialog::Item::Item(KListView* parent_, const KABC::Addressee& add_)
: KListViewItem(tqparent_), m_uid(add_.uid()) { : KListViewItem(parent_), m_uid(add_.uid()) {
setText(0, add_.realName()); setText(0, add_.realName());
setPixmap(0, SmallIcon(TQString::tqfromLatin1("kaddressbook"))); setPixmap(0, SmallIcon(TQString::tqfromLatin1("kaddressbook")));
} }
BorrowerDialog::Item::Item(KListView* tqparent_, const Data::Borrower& bor_) BorrowerDialog::Item::Item(KListView* parent_, const Data::Borrower& bor_)
: KListViewItem(tqparent_), m_uid(bor_.uid()) { : KListViewItem(parent_), m_uid(bor_.uid()) {
setText(0, bor_.name()); setText(0, bor_.name());
setPixmap(0, SmallIcon(TQString::tqfromLatin1("tellico"))); setPixmap(0, SmallIcon(TQString::tqfromLatin1("tellico")));
} }
// default button is going to be used as a print button, so it's separated // default button is going to be used as a print button, so it's separated
BorrowerDialog::BorrowerDialog(TQWidget* tqparent_, const char* name_/*=0*/) BorrowerDialog::BorrowerDialog(TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(tqparent_, name_, true, i18n("Select Borrower"), Ok|Cancel) { : KDialogBase(parent_, name_, true, i18n("Select Borrower"), Ok|Cancel) {
TQWidget* mainWidget = new TQWidget(this, "BorrowerDialog mainWidget"); TQWidget* mainWidget = new TQWidget(this, "BorrowerDialog mainWidget");
setMainWidget(mainWidget); setMainWidget(mainWidget);
TQVBoxLayout* topLayout = new TQVBoxLayout(mainWidget, 0, KDialog::spacingHint()); TQVBoxLayout* topLayout = new TQVBoxLayout(mainWidget, 0, KDialog::spacingHint());
@ -124,8 +124,8 @@ Tellico::Data::BorrowerPtr BorrowerDialog::borrower() {
} }
// static // static
Tellico::Data::BorrowerPtr BorrowerDialog::getBorrower(TQWidget* tqparent_) { Tellico::Data::BorrowerPtr BorrowerDialog::getBorrower(TQWidget* parent_) {
BorrowerDialog dlg(tqparent_); BorrowerDialog dlg(parent_);
if(dlg.exec() == TQDialog::Accepted) { if(dlg.exec() == TQDialog::Accepted) {
return dlg.borrower(); return dlg.borrower();

@ -19,8 +19,8 @@
using Tellico::BorrowerItem; using Tellico::BorrowerItem;
BorrowerItem::BorrowerItem(GUI::ListView* tqparent_, Data::BorrowerPtr borrower_) BorrowerItem::BorrowerItem(GUI::ListView* parent_, Data::BorrowerPtr borrower_)
: GUI::CountedItem(tqparent_), m_borrower(borrower_) { : GUI::CountedItem(parent_), m_borrower(borrower_) {
setText(0, borrower_->name()); setText(0, borrower_->name());
setPixmap(0, SmallIcon(TQString::tqfromLatin1("kaddressbook"))); setPixmap(0, SmallIcon(TQString::tqfromLatin1("kaddressbook")));
} }

@ -262,7 +262,7 @@ bool Collection::modifyField(FieldPtr newField_) {
if(oldField->formatFlag() != newField_->formatFlag()) { if(oldField->formatFlag() != newField_->formatFlag()) {
// tqinvalidate cached format strings of all entry attributes of this name // tqinvalidate cached format strings of all entry attributes of this name
for(EntryVecIt it = m_entries.begin(); it != m_entries.end(); ++it) { for(EntryVecIt it = m_entries.begin(); it != m_entries.end(); ++it) {
it->tqinvalidateFormattedFieldValue(fieldName); it->invalidateFormattedFieldValue(fieldName);
} }
resetGroups = true; resetGroups = true;
} }
@ -325,7 +325,7 @@ bool Collection::modifyField(FieldPtr newField_) {
if(resetGroups) { if(resetGroups) {
myLog() << "Collection::modifyField() - invalidating groups" << endl; myLog() << "Collection::modifyField() - invalidating groups" << endl;
tqinvalidateGroups(); invalidateGroups();
} }
// now to update all entries if the field is a dependent and the description changed // now to update all entries if the field is a dependent and the description changed
@ -681,7 +681,7 @@ TQStringList Collection::entryGroupNamesByField(EntryPtr entry_, const TQString&
return values.toList(); return values.toList();
} }
void Collection::tqinvalidateGroups() { void Collection::invalidateGroups() {
TQDictIterator<EntryGroupDict> dictIt(m_entryGroupDicts); TQDictIterator<EntryGroupDict> dictIt(m_entryGroupDicts);
for( ; dictIt.current(); ++dictIt) { for( ; dictIt.current(); ++dictIt) {
dictIt.current()->clear(); dictIt.current()->clear();
@ -690,7 +690,7 @@ void Collection::tqinvalidateGroups() {
// populateDicts() will make signals that the group view is connected to, block those // populateDicts() will make signals that the group view is connected to, block those
blockSignals(true); blockSignals(true);
for(EntryVecIt it = m_entries.begin(); it != m_entries.end(); ++it) { for(EntryVecIt it = m_entries.begin(); it != m_entries.end(); ++it) {
it->tqinvalidateFormattedFieldValue(); it->invalidateFormattedFieldValue();
it->clearGroups(); it->clearGroups();
} }
blockSignals(false); blockSignals(false);

@ -298,7 +298,7 @@ public:
/** /**
* Invalidates all group names in the collection. * Invalidates all group names in the collection.
*/ */
void tqinvalidateGroups(); void invalidateGroups();
/** /**
* Returns true if the collection contains at least one Image field. * Returns true if the collection contains at least one Image field.
* *

@ -52,8 +52,8 @@ FieldListBox::FieldListBox(TQListBox* listbox_, Data::FieldPtr field_, TQListBox
: GUI::ListBoxText(listbox_, field_->title(), after_), m_field(field_) { : GUI::ListBoxText(listbox_, field_->title(), after_), m_field(field_) {
} }
CollectionFieldsDialog::CollectionFieldsDialog(Data::CollPtr coll_, TQWidget* tqparent_, const char* name_/*=0*/) CollectionFieldsDialog::CollectionFieldsDialog(Data::CollPtr coll_, TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(tqparent_, name_, false, i18n("Collection Fields"), Help|Default|Ok|Apply|Cancel, Ok, false), : KDialogBase(parent_, name_, false, i18n("Collection Fields"), Help|Default|Ok|Apply|Cancel, Ok, false),
m_coll(coll_), m_coll(coll_),
m_defaultCollection(0), m_defaultCollection(0),
m_currentField(0), m_currentField(0),

@ -71,9 +71,9 @@ namespace {
using Tellico::SourceListViewItem; using Tellico::SourceListViewItem;
using Tellico::ConfigDialog; using Tellico::ConfigDialog;
SourceListViewItem::SourceListViewItem(KListView* tqparent_, const GeneralFetcherInfo& info_, SourceListViewItem::SourceListViewItem(KListView* parent_, const GeneralFetcherInfo& info_,
const TQString& groupName_) const TQString& groupName_)
: KListViewItem(tqparent_, info_.name), m_info(info_), : KListViewItem(parent_, info_.name), m_info(info_),
m_configGroup(groupName_), m_newSource(groupName_.isNull()), m_fetcher(0) { m_configGroup(groupName_), m_newSource(groupName_.isNull()), m_fetcher(0) {
TQPixmap pix = Fetch::Manager::fetcherIcon(info_.type); TQPixmap pix = Fetch::Manager::fetcherIcon(info_.type);
if(!pix.isNull()) { if(!pix.isNull()) {
@ -81,9 +81,9 @@ SourceListViewItem::SourceListViewItem(KListView* tqparent_, const GeneralFetche
} }
} }
SourceListViewItem::SourceListViewItem(KListView* tqparent_, TQListViewItem* after_, SourceListViewItem::SourceListViewItem(KListView* parent_, TQListViewItem* after_,
const GeneralFetcherInfo& info_, const TQString& groupName_) const GeneralFetcherInfo& info_, const TQString& groupName_)
: KListViewItem(tqparent_, after_, info_.name), m_info(info_), : KListViewItem(parent_, after_, info_.name), m_info(info_),
m_configGroup(groupName_), m_newSource(groupName_.isNull()), m_fetcher(0) { m_configGroup(groupName_), m_newSource(groupName_.isNull()), m_fetcher(0) {
TQPixmap pix = Fetch::Manager::fetcherIcon(info_.type); TQPixmap pix = Fetch::Manager::fetcherIcon(info_.type);
if(!pix.isNull()) { if(!pix.isNull()) {
@ -99,9 +99,9 @@ void SourceListViewItem::setFetcher(Fetch::Fetcher::Ptr fetcher) {
} }
} }
ConfigDialog::ConfigDialog(TQWidget* tqparent_, const char* name_/*=0*/) ConfigDialog::ConfigDialog(TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(IconList, i18n("Configure Tellico"), Help|Ok|Apply|Cancel|Default, : KDialogBase(IconList, i18n("Configure Tellico"), Help|Ok|Apply|Cancel|Default,
Ok, tqparent_, name_, true, false) Ok, parent_, name_, true, false)
, m_modifying(false) , m_modifying(false)
, m_okClicked(false) { , m_okClicked(false) {
setupGeneralPage(); setupGeneralPage();

@ -50,8 +50,8 @@ using Tellico::Controller;
Controller* Controller::s_self = 0; Controller* Controller::s_self = 0;
Controller::Controller(MainWindow* tqparent_, const char* name_) Controller::Controller(MainWindow* parent_, const char* name_)
: TQObject(tqparent_, name_), m_mainWindow(tqparent_), m_working (false), m_widgetWithSelection(0) { : TQObject(parent_, name_), m_mainWindow(parent_), m_working (false), m_widgetWithSelection(0) {
} }
void Controller::addObserver(Observer* obs) { void Controller::addObserver(Observer* obs) {

@ -21,7 +21,7 @@
using Tellico::DropHandler; using Tellico::DropHandler;
DropHandler::DropHandler(TQObject* tqparent_) : TQObject(tqparent_) { DropHandler::DropHandler(TQObject* parent_) : TQObject(parent_) {
} }
DropHandler::~DropHandler() { DropHandler::~DropHandler() {

@ -32,8 +32,8 @@ namespace {
using Tellico::DetailedEntryItem; using Tellico::DetailedEntryItem;
DetailedEntryItem::DetailedEntryItem(DetailedListView* tqparent_, Data::EntryPtr entry_) DetailedEntryItem::DetailedEntryItem(DetailedListView* parent_, Data::EntryPtr entry_)
: EntryItem(tqparent_, entry_), m_state(Normal), m_time(0), m_timer(0) { : EntryItem(parent_, entry_), m_state(Normal), m_time(0), m_timer(0) {
} }
DetailedEntryItem::~DetailedEntryItem() { DetailedEntryItem::~DetailedEntryItem() {

@ -41,8 +41,8 @@ namespace {
using Tellico::DetailedListView; using Tellico::DetailedListView;
DetailedListView::DetailedListView(TQWidget* tqparent_, const char* name_/*=0*/) DetailedListView::DetailedListView(TQWidget* parent_, const char* name_/*=0*/)
: GUI::ListView(tqparent_, name_), m_filter(0), : GUI::ListView(parent_, name_), m_filter(0),
m_prevSortColumn(-1), m_prev2SortColumn(-1), m_firstSection(-1), m_prevSortColumn(-1), m_prev2SortColumn(-1), m_firstSection(-1),
m_pixWidth(50), m_pixHeight(50) { m_pixWidth(50), m_pixHeight(50) {
// myDebug() << "DetailedListView()" << endl; // myDebug() << "DetailedListView()" << endl;

@ -228,7 +228,7 @@ bool Entry::setField(const TQString& name_, const TQString& value_) {
if(!m_fields.isEmpty() && m_fields.tqcontains(name_)) { if(!m_fields.isEmpty() && m_fields.tqcontains(name_)) {
m_fields.remove(name_); m_fields.remove(name_);
} }
tqinvalidateFormattedFieldValue(name_); invalidateFormattedFieldValue(name_);
return true; return true;
} }
@ -259,7 +259,7 @@ bool Entry::setField(const TQString& name_, const TQString& value_) {
} else { } else {
m_fields.insert(Tellico::shareString(name_), value_); m_fields.insert(Tellico::shareString(name_), value_);
} }
tqinvalidateFormattedFieldValue(name_); invalidateFormattedFieldValue(name_);
return true; return true;
} }
@ -333,7 +333,7 @@ bool Entry::isOwned() {
} }
// a null string means tqinvalidate all // a null string means tqinvalidate all
void Entry::tqinvalidateFormattedFieldValue(const TQString& name_) { void Entry::invalidateFormattedFieldValue(const TQString& name_) {
if(name_.isNull()) { if(name_.isNull()) {
m_formattedFields.clear(); m_formattedFields.clear();
} else if(!m_formattedFields.isEmpty() && m_formattedFields.tqcontains(name_)) { } else if(!m_formattedFields.isEmpty() && m_formattedFields.tqcontains(name_)) {
@ -436,12 +436,12 @@ int Entry::compareValues(EntryPtr e1, EntryPtr e2, FieldPtr f) {
// myDebug() << "match without articles" << endl; // myDebug() << "match without articles" << endl;
return 3; return 3;
} }
// try removing everything between tqparentheses // try removing everything between parentheses
TQRegExp rx(TQString::tqfromLatin1("\\s*\\(.*\\)\\s*")); TQRegExp rx(TQString::tqfromLatin1("\\s*\\(.*\\)\\s*"));
s1.remove(rx); s1.remove(rx);
s2.remove(rx); s2.remove(rx);
if(!s1.isEmpty() && s1 == s2) { if(!s1.isEmpty() && s1 == s2) {
// myDebug() << "match without tqparentheses" << endl; // myDebug() << "match without parentheses" << endl;
return 2; return 2;
} }
if(f->flags() & Field::AllowMultiple) { if(f->flags() & Field::AllowMultiple) {

@ -213,7 +213,7 @@ public:
* *
* @param name The name of the field that changed. TQString() means tqinvalidate all fields. * @param name The name of the field that changed. TQString() means tqinvalidate all fields.
*/ */
void tqinvalidateFormattedFieldValue(const TQString& name=TQString()); void invalidateFormattedFieldValue(const TQString& name=TQString());
static int compareValues(EntryPtr entry1, EntryPtr entry2, FieldPtr field); static int compareValues(EntryPtr entry1, EntryPtr entry2, FieldPtr field);
static int compareValues(EntryPtr entry1, EntryPtr entry2, const TQString& field, ConstCollPtr coll); static int compareValues(EntryPtr entry1, EntryPtr entry2, const TQString& field, ConstCollPtr coll);

@ -47,8 +47,8 @@ namespace {
using Tellico::EntryEditDialog; using Tellico::EntryEditDialog;
EntryEditDialog::EntryEditDialog(TQWidget* tqparent_, const char* name_) EntryEditDialog::EntryEditDialog(TQWidget* parent_, const char* name_)
: KDialogBase(tqparent_, name_, false, i18n("Edit Entry"), Help|User1|User2|User3|Apply|Close, User1, false, : KDialogBase(parent_, name_, false, i18n("Edit Entry"), Help|User1|User2|User3|Apply|Close, User1, false,
KGuiItem(i18n("&New Entry"))), KGuiItem(i18n("&New Entry"))),
m_currColl(0), m_currColl(0),
m_tabs(new GUI::TabControl(this)), m_tabs(new GUI::TabControl(this)),
@ -250,8 +250,8 @@ void EntryEditDialog::setLayout(Data::CollPtr coll_) {
// I don't want anything to be hidden, Keramik has a bug if I don't do this // I don't want anything to be hidden, Keramik has a bug if I don't do this
it.current()->setMinimumHeight(it.current()->tqsizeHint().height()); it.current()->setMinimumHeight(it.current()->tqsizeHint().height());
// the tqparent of the grid is the page that got added to the tabs // the tqparent of the grid is the page that got added to the tabs
it.current()->tqparentWidget()->tqlayout()->tqinvalidate(); it.current()->parentWidget()->tqlayout()->tqinvalidate();
it.current()->tqparentWidget()->setMinimumHeight(it.current()->tqparentWidget()->tqsizeHint().height()); it.current()->parentWidget()->setMinimumHeight(it.current()->parentWidget()->tqsizeHint().height());
} }
setUpdatesEnabled(true); setUpdatesEnabled(true);
@ -561,12 +561,12 @@ void EntryEditDialog::removeField(Data::CollPtr, Data::FieldPtr field_) {
if(m_currColl->fieldCategories().tqfindIndex(field_->category()) == -1) { if(m_currColl->fieldCategories().tqfindIndex(field_->category()) == -1) {
// myDebug() << "last field in the category" << endl; // myDebug() << "last field in the category" << endl;
// fragile, widget's tqparent is the grid, whose tqparent is the tab page // fragile, widget's tqparent is the grid, whose tqparent is the tab page
TQWidget* w = widget->tqparentWidget()->tqparentWidget(); TQWidget* w = widget->parentWidget()->parentWidget();
m_tabs->removePage(w); m_tabs->removePage(w);
delete w; // automatically deletes child widget delete w; // automatically deletes child widget
} else { } else {
// much of this replicates code in setLayout() // much of this replicates code in setLayout()
TQGridLayout* tqlayout = static_cast<TQGridLayout*>(widget->tqparentWidget()->tqlayout()); TQGridLayout* tqlayout = static_cast<TQGridLayout*>(widget->parentWidget()->tqlayout());
delete widget; // automatically removes from tqlayout delete widget; // automatically removes from tqlayout
TQValueVector<bool> expands(NCOLS, false); TQValueVector<bool> expands(NCOLS, false);
@ -705,7 +705,7 @@ void EntryEditDialog::modifyField(Data::CollPtr coll_, Data::FieldPtr oldField_,
// need to update label widths // need to update label widths
if(newField_->title() != oldField_->title()) { if(newField_->title() != oldField_->title()) {
int maxWidth = 0; int maxWidth = 0;
TQObjectList* childList = widget->tqparentWidget()->queryList("Tellico::GUI::FieldWidget", 0, false, false); TQObjectList* childList = widget->parentWidget()->queryList("Tellico::GUI::FieldWidget", 0, false, false);
TQObjectListIt it(*childList); TQObjectListIt it(*childList);
for(it.toFirst(); it.current(); ++it) { for(it.toFirst(); it.current(); ++it) {
maxWidth = TQMAX(maxWidth, static_cast<GUI::FieldWidget*>(TQT_TQWIDGET(it.current()))->labelWidth()); maxWidth = TQMAX(maxWidth, static_cast<GUI::FieldWidget*>(TQT_TQWIDGET(it.current()))->labelWidth());
@ -719,7 +719,7 @@ void EntryEditDialog::modifyField(Data::CollPtr coll_, Data::FieldPtr oldField_,
// field widgets's tqparent is the grid, whose tqparent is the tab page // field widgets's tqparent is the grid, whose tqparent is the tab page
// this is for singleCategory fields // this is for singleCategory fields
if(newField_->category() != oldField_->category()) { if(newField_->category() != oldField_->category()) {
m_tabs->setTabLabel(widget->tqparentWidget()->tqparentWidget(), newField_->category()); m_tabs->setTabLabel(widget->parentWidget()->parentWidget(), newField_->category());
} }
} }
} }

@ -27,8 +27,8 @@
using Tellico::EntryGroupItem; using Tellico::EntryGroupItem;
EntryGroupItem::EntryGroupItem(GUI::ListView* tqparent_, Data::EntryGroup* group_, int fieldType_) EntryGroupItem::EntryGroupItem(GUI::ListView* parent_, Data::EntryGroup* group_, int fieldType_)
: GUI::CountedItem(tqparent_), m_group(group_), m_fieldType(fieldType_) { : GUI::CountedItem(parent_), m_group(group_), m_fieldType(fieldType_) {
setText(0, group_->groupName()); setText(0, group_->groupName());
m_emptyGroup = group_->groupName() == i18n(Data::Collection::s_emptyGroupTitle); m_emptyGroup = group_->groupName() == i18n(Data::Collection::s_emptyGroupTitle);
} }

@ -42,8 +42,8 @@ namespace {
using Tellico::EntryIconView; using Tellico::EntryIconView;
using Tellico::EntryIconViewItem; using Tellico::EntryIconViewItem;
EntryIconView::EntryIconView(TQWidget* tqparent_, const char* name_/*=0*/) EntryIconView::EntryIconView(TQWidget* parent_, const char* name_/*=0*/)
: KIconView(tqparent_, name_), m_coll(0), m_maxAllowedIconWidth(MAX_ENTRY_ICON_SIZE), : KIconView(parent_, name_), m_coll(0), m_maxAllowedIconWidth(MAX_ENTRY_ICON_SIZE),
m_maxIconWidth(MIN_ENTRY_ICON_SIZE), m_maxIconHeight(MIN_ENTRY_ICON_SIZE), m_maxIconWidth(MIN_ENTRY_ICON_SIZE), m_maxIconHeight(MIN_ENTRY_ICON_SIZE),
m_comparison(0) { m_comparison(0) {
setAutoArrange(true); setAutoArrange(true);
@ -310,14 +310,14 @@ int EntryIconView::compare(const EntryIconViewItem* item1, EntryIconViewItem* it
/* *********************************************************** */ /* *********************************************************** */
EntryIconViewItem::EntryIconViewItem(EntryIconView* tqparent_, Data::EntryPtr entry_) EntryIconViewItem::EntryIconViewItem(EntryIconView* parent_, Data::EntryPtr entry_)
: KIconViewItem(tqparent_, entry_->title()), m_entry(entry_), m_usesImage(false) { : KIconViewItem(parent_, entry_->title()), m_entry(entry_), m_usesImage(false) {
setDragEnabled(false); setDragEnabled(false);
const TQString& imageField = tqparent_->imageField(); const TQString& imageField = parent_->imageField();
if(!imageField.isEmpty()) { if(!imageField.isEmpty()) {
TQPixmap p = ImageFactory::pixmap(m_entry->field(imageField), TQPixmap p = ImageFactory::pixmap(m_entry->field(imageField),
tqparent_->maxAllowedIconWidth(), parent_->maxAllowedIconWidth(),
tqparent_->maxAllowedIconWidth()); parent_->maxAllowedIconWidth());
if(!p.isNull()) { if(!p.isNull()) {
setPixmap(p); setPixmap(p);
m_usesImage = true; m_usesImage = true;

@ -25,8 +25,8 @@ EntryItem::EntryItem(GUI::ListView* tqparent, Data::EntryPtr entry)
: GUI::ListViewItem(tqparent), m_entry(entry), m_isDetailedList(true) { : GUI::ListViewItem(tqparent), m_entry(entry), m_isDetailedList(true) {
} }
EntryItem::EntryItem(GUI::CountedItem* tqparent_, Data::EntryPtr entry_) EntryItem::EntryItem(GUI::CountedItem* parent_, Data::EntryPtr entry_)
: GUI::ListViewItem(tqparent_), m_entry(entry_), m_isDetailedList(false) { : GUI::ListViewItem(parent_), m_entry(entry_), m_isDetailedList(false) {
setText(0, m_entry->title()); setText(0, m_entry->title());
setPixmap(0, UserIcon(entry_->collection()->typeName())); setPixmap(0, UserIcon(entry_->collection()->typeName()));
} }

@ -42,7 +42,7 @@ public:
*/ */
EntryItem(GUI::ListView* tqparent, Data::EntryPtr entry); EntryItem(GUI::ListView* tqparent, Data::EntryPtr entry);
/** /**
* This constructor is for items which have other KListViewItems as tqparents. It * This constructor is for items which have other KListViewItems as parents. It
* initializes the text in the first column, as well. * initializes the text in the first column, as well.
* *
* @param tqparent A pointer to the tqparent * @param tqparent A pointer to the tqparent

@ -26,8 +26,8 @@
using Tellico::EntryMerger; using Tellico::EntryMerger;
EntryMerger::EntryMerger(Data::EntryVec entries_, TQObject* tqparent_) EntryMerger::EntryMerger(Data::EntryVec entries_, TQObject* parent_)
: TQObject(tqparent_), m_entriesToCheck(entries_), m_origCount(entries_.count()), m_cancelled(false) { : TQObject(parent_), m_entriesToCheck(entries_), m_origCount(entries_.count()), m_cancelled(false) {
m_entriesLeft = m_entriesToCheck; m_entriesLeft = m_entriesToCheck;
Kernel::self()->beginCommandGroup(i18n("Merge Entries")); Kernel::self()->beginCommandGroup(i18n("Merge Entries"));

@ -37,8 +37,8 @@ using Tellico::EntryUpdater;
// for each entry, we loop over all available fetchers // for each entry, we loop over all available fetchers
// then we loop over all entries // then we loop over all entries
EntryUpdater::EntryUpdater(Data::CollPtr coll_, Data::EntryVec entries_, TQObject* tqparent_) EntryUpdater::EntryUpdater(Data::CollPtr coll_, Data::EntryVec entries_, TQObject* parent_)
: TQObject(tqparent_), m_coll(coll_), m_entriesToUpdate(entries_), m_cancelled(false) { : TQObject(parent_), m_coll(coll_), m_entriesToUpdate(entries_), m_cancelled(false) {
// for now, we're assuming all entries are same collection type // for now, we're assuming all entries are same collection type
m_fetchers = Fetch::Manager::self()->createUpdateFetchers(m_coll->type()); m_fetchers = Fetch::Manager::self()->createUpdateFetchers(m_coll->type());
for(Fetch::FetcherVec::Iterator it = m_fetchers.begin(); it != m_fetchers.end(); ++it) { for(Fetch::FetcherVec::Iterator it = m_fetchers.begin(); it != m_fetchers.end(); ++it) {
@ -50,8 +50,8 @@ EntryUpdater::EntryUpdater(Data::CollPtr coll_, Data::EntryVec entries_, TQObjec
init(); init();
} }
EntryUpdater::EntryUpdater(const TQString& source_, Data::CollPtr coll_, Data::EntryVec entries_, TQObject* tqparent_) EntryUpdater::EntryUpdater(const TQString& source_, Data::CollPtr coll_, Data::EntryVec entries_, TQObject* parent_)
: TQObject(tqparent_) : TQObject(parent_)
, m_coll(coll_) , m_coll(coll_)
, m_entriesToUpdate(entries_) , m_entriesToUpdate(entries_)
, m_cancelled(false) { , m_cancelled(false) {

@ -40,7 +40,7 @@
using Tellico::EntryView; using Tellico::EntryView;
EntryView::EntryView(TQWidget* tqparent_, const char* name_) : KHTMLPart(tqparent_, name_), EntryView::EntryView(TQWidget* parent_, const char* name_) : KHTMLPart(parent_, name_),
m_entry(0), m_handler(0), m_run(0), m_tempFile(0), m_useGradientImages(true), m_checkCommonFile(true) { m_entry(0), m_handler(0), m_run(0), m_tempFile(0), m_useGradientImages(true), m_checkCommonFile(true) {
setJScriptEnabled(false); setJScriptEnabled(false);
setJavaEnabled(false); setJavaEnabled(false);
@ -266,7 +266,7 @@ void EntryView::slotRefresh() {
// do some contortions in case the url is relative // do some contortions in case the url is relative
// need to interpret it relative to document URL instead of xslt file // need to interpret it relative to document URL instead of xslt file
// the current node under the mouse vould be the text node inside // the current node under the mouse vould be the text node inside
// the anchor node, so iterate up the tqparents // the anchor node, so iterate up the parents
void EntryView::slotOpenURL(const KURL& url_) { void EntryView::slotOpenURL(const KURL& url_) {
if(url_.protocol() == Latin1Literal("tc")) { if(url_.protocol() == Latin1Literal("tc")) {
// handle this internally // handle this internally

@ -44,8 +44,8 @@
using Tellico::ExportDialog; using Tellico::ExportDialog;
ExportDialog::ExportDialog(Export::Format format_, Data::CollPtr coll_, TQWidget* tqparent_, const char* name_) ExportDialog::ExportDialog(Export::Format format_, Data::CollPtr coll_, TQWidget* parent_, const char* name_)
: KDialogBase(tqparent_, name_, true /*modal*/, i18n("Export Options"), Ok|Cancel), : KDialogBase(parent_, name_, true /*modal*/, i18n("Export Options"), Ok|Cancel),
m_format(format_), m_coll(coll_), m_exporter(exporter(format_)) { m_format(format_), m_coll(coll_), m_exporter(exporter(format_)) {
TQWidget* widget = new TQWidget(this); TQWidget* widget = new TQWidget(this);
TQVBoxLayout* topLayout = new TQVBoxLayout(widget, 0, spacingHint()); TQVBoxLayout* topLayout = new TQVBoxLayout(widget, 0, spacingHint());

@ -82,8 +82,8 @@ const AmazonFetcher::SiteData& AmazonFetcher::siteData(int site_) {
return dataVector[site_]; return dataVector[site_];
} }
AmazonFetcher::AmazonFetcher(Site site_, TQObject* tqparent_, const char* name_) AmazonFetcher::AmazonFetcher(Site site_, TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), m_xsltHandler(0), m_site(site_), m_imageSize(MediumImage), : Fetcher(parent_, name_), m_xsltHandler(0), m_site(site_), m_imageSize(MediumImage),
m_access(TQString::tqfromLatin1(AMAZON_ACCESS_KEY)), m_access(TQString::tqfromLatin1(AMAZON_ACCESS_KEY)),
m_assoc(TQString::tqfromLatin1(AMAZON_ASSOC_TOKEN)), m_addLinkField(true), m_limit(AMAZON_MAX_RETURNS_TOTAL), m_assoc(TQString::tqfromLatin1(AMAZON_ASSOC_TOKEN)), m_addLinkField(true), m_limit(AMAZON_MAX_RETURNS_TOTAL),
m_countOffset(0), m_page(1), m_total(-1), m_numResults(0), m_job(0), m_started(false) { m_countOffset(0), m_page(1), m_total(-1), m_numResults(0), m_job(0), m_started(false) {
@ -397,7 +397,7 @@ void AmazonFetcher::slotComplete(KIO::Job* job_) {
} }
// for some reason, Amazon will return an error simply when a valid ISBN is not found // for some reason, Amazon will return an error simply when a valid ISBN is not found
// I really want to ignore that, so check the IsValid element in the Request element // I really want to ignore that, so check the IsValid element in the Request element
TQDomNode isValidNode = n.tqparentNode().namedItem(TQString::tqfromLatin1("IsValid")); TQDomNode isValidNode = n.parentNode().namedItem(TQString::tqfromLatin1("IsValid"));
if(m_key == ISBN && isValidNode.toElement().text().lower() == Latin1Literal("true")) { if(m_key == ISBN && isValidNode.toElement().text().lower() == Latin1Literal("true")) {
continue; continue;
} }
@ -793,7 +793,7 @@ void AmazonFetcher::updateEntry(Data::EntryPtr entry_) {
void AmazonFetcher::parseTitle(Data::EntryPtr entry, int collType) { void AmazonFetcher::parseTitle(Data::EntryPtr entry, int collType) {
Q_UNUSED(collType); Q_UNUSED(collType);
// assume that everything in brackets or tqparentheses is extra // assume that everything in brackets or parentheses is extra
TQRegExp rx(TQString::tqfromLatin1("[\\(\\[](.*)[\\)\\]]")); TQRegExp rx(TQString::tqfromLatin1("[\\(\\[](.*)[\\)\\]]"));
rx.setMinimal(true); rx.setMinimal(true);
TQString title = entry->field(TQString::tqfromLatin1("title")); TQString title = entry->field(TQString::tqfromLatin1("title"));
@ -834,12 +834,12 @@ bool AmazonFetcher::parseTitleToken(Data::EntryPtr entry, const TQString& token)
return res; return res;
} }
Tellico::Fetch::ConfigWidget* AmazonFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* AmazonFetcher::configWidget(TQWidget* parent_) const {
return new AmazonFetcher::ConfigWidget(tqparent_, this); return new AmazonFetcher::ConfigWidget(parent_, this);
} }
AmazonFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const AmazonFetcher* fetcher_/*=0*/) AmazonFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const AmazonFetcher* fetcher_/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -141,7 +141,7 @@ Q_OBJECT
TQ_OBJECT TQ_OBJECT
public: public:
ConfigWidget(TQWidget* tqparent_, const AmazonFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const AmazonFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;

@ -39,8 +39,8 @@ namespace {
using Tellico::Fetch::AnimeNfoFetcher; using Tellico::Fetch::AnimeNfoFetcher;
AnimeNfoFetcher::AnimeNfoFetcher(TQObject* tqparent_, const char* name_ /*=0*/) AnimeNfoFetcher::AnimeNfoFetcher(TQObject* parent_, const char* name_ /*=0*/)
: Fetcher(tqparent_, name_), m_started(false) { : Fetcher(parent_, name_), m_started(false) {
} }
TQString AnimeNfoFetcher::defaultName() { TQString AnimeNfoFetcher::defaultName() {
@ -360,12 +360,12 @@ void AnimeNfoFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* AnimeNfoFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* AnimeNfoFetcher::configWidget(TQWidget* parent_) const {
return new AnimeNfoFetcher::ConfigWidget(tqparent_); return new AnimeNfoFetcher::ConfigWidget(parent_);
} }
AnimeNfoFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_) AnimeNfoFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -57,7 +57,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_); ConfigWidget(TQWidget* parent_);
virtual void saveConfig(KConfigGroup&) {} virtual void saveConfig(KConfigGroup&) {}
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -40,8 +40,8 @@ namespace {
using Tellico::Fetch::ArxivFetcher; using Tellico::Fetch::ArxivFetcher;
ArxivFetcher::ArxivFetcher(TQObject* tqparent_) ArxivFetcher::ArxivFetcher(TQObject* parent_)
: Fetcher(tqparent_), m_xsltHandler(0), m_start(0), m_job(0), m_started(false) { : Fetcher(parent_), m_xsltHandler(0), m_start(0), m_job(0), m_started(false) {
} }
ArxivFetcher::~ArxivFetcher() { ArxivFetcher::~ArxivFetcher() {
@ -345,12 +345,12 @@ void ArxivFetcher::updateEntrySynchronous(Data::EntryPtr entry) {
} }
} }
Tellico::Fetch::ConfigWidget* ArxivFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* ArxivFetcher::configWidget(TQWidget* parent_) const {
return new ArxivFetcher::ConfigWidget(tqparent_, this); return new ArxivFetcher::ConfigWidget(parent_, this);
} }
ArxivFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const ArxivFetcher*) ArxivFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const ArxivFetcher*)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -59,7 +59,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const ArxivFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const ArxivFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -35,8 +35,8 @@ namespace {
using Tellico::Fetch::BibsonomyFetcher; using Tellico::Fetch::BibsonomyFetcher;
BibsonomyFetcher::BibsonomyFetcher(TQObject* tqparent_) BibsonomyFetcher::BibsonomyFetcher(TQObject* parent_)
: Fetcher(tqparent_), m_job(0), m_started(false) { : Fetcher(parent_), m_job(0), m_started(false) {
} }
BibsonomyFetcher::~BibsonomyFetcher() { BibsonomyFetcher::~BibsonomyFetcher() {
@ -188,12 +188,12 @@ void BibsonomyFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* BibsonomyFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* BibsonomyFetcher::configWidget(TQWidget* parent_) const {
return new BibsonomyFetcher::ConfigWidget(tqparent_, this); return new BibsonomyFetcher::ConfigWidget(parent_, this);
} }
BibsonomyFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const BibsonomyFetcher*) BibsonomyFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const BibsonomyFetcher*)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -54,7 +54,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const BibsonomyFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const BibsonomyFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -36,8 +36,8 @@ namespace {
using Tellico::Fetch::CitebaseFetcher; using Tellico::Fetch::CitebaseFetcher;
CitebaseFetcher::CitebaseFetcher(TQObject* tqparent_) CitebaseFetcher::CitebaseFetcher(TQObject* parent_)
: Fetcher(tqparent_), m_job(0), m_started(false) { : Fetcher(parent_), m_job(0), m_started(false) {
} }
CitebaseFetcher::~CitebaseFetcher() { CitebaseFetcher::~CitebaseFetcher() {
@ -227,12 +227,12 @@ void CitebaseFetcher::updateEntrySynchronous(Data::EntryPtr entry) {
} }
} }
Tellico::Fetch::ConfigWidget* CitebaseFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* CitebaseFetcher::configWidget(TQWidget* parent_) const {
return new CitebaseFetcher::ConfigWidget(tqparent_, this); return new CitebaseFetcher::ConfigWidget(parent_, this);
} }
CitebaseFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const CitebaseFetcher*) CitebaseFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const CitebaseFetcher*)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -55,7 +55,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const CitebaseFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const CitebaseFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -22,7 +22,7 @@
using Tellico::Fetch::ConfigWidget; using Tellico::Fetch::ConfigWidget;
ConfigWidget::ConfigWidget(TQWidget* tqparent_) : TQWidget(tqparent_), m_modified(false), m_accepted(false) { ConfigWidget::ConfigWidget(TQWidget* parent_) : TQWidget(parent_), m_modified(false), m_accepted(false) {
TQHBoxLayout* boxLayout = new TQHBoxLayout(this); TQHBoxLayout* boxLayout = new TQHBoxLayout(this);
boxLayout->setSpacing(10); boxLayout->setSpacing(10);

@ -44,8 +44,8 @@ namespace {
using Tellico::Fetch::CrossRefFetcher; using Tellico::Fetch::CrossRefFetcher;
CrossRefFetcher::CrossRefFetcher(TQObject* tqparent_) CrossRefFetcher::CrossRefFetcher(TQObject* parent_)
: Fetcher(tqparent_), m_xsltHandler(0), m_job(0), m_started(false) { : Fetcher(parent_), m_xsltHandler(0), m_job(0), m_started(false) {
} }
CrossRefFetcher::~CrossRefFetcher() { CrossRefFetcher::~CrossRefFetcher() {
@ -326,12 +326,12 @@ void CrossRefFetcher::updateEntrySynchronous(Data::EntryPtr entry) {
} }
} }
Tellico::Fetch::ConfigWidget* CrossRefFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* CrossRefFetcher::configWidget(TQWidget* parent_) const {
return new CrossRefFetcher::ConfigWidget(tqparent_, this); return new CrossRefFetcher::ConfigWidget(parent_, this);
} }
CrossRefFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const CrossRefFetcher* fetcher_) CrossRefFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const CrossRefFetcher* fetcher_)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -60,7 +60,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const CrossRefFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const CrossRefFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;
private: private:

@ -42,8 +42,8 @@ namespace {
using Tellico::Fetch::DiscogsFetcher; using Tellico::Fetch::DiscogsFetcher;
DiscogsFetcher::DiscogsFetcher(TQObject* tqparent_, const char* name_) DiscogsFetcher::DiscogsFetcher(TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), m_xsltHandler(0), : Fetcher(parent_, name_), m_xsltHandler(0),
m_limit(DISCOGS_MAX_RETURNS_TOTAL), m_job(0), m_started(false), m_limit(DISCOGS_MAX_RETURNS_TOTAL), m_job(0), m_started(false),
m_apiKey(TQString::tqfromLatin1(DISCOGS_API_KEY)) { m_apiKey(TQString::tqfromLatin1(DISCOGS_API_KEY)) {
} }
@ -342,12 +342,12 @@ void DiscogsFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* DiscogsFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* DiscogsFetcher::configWidget(TQWidget* parent_) const {
return new DiscogsFetcher::ConfigWidget(tqparent_, this); return new DiscogsFetcher::ConfigWidget(parent_, this);
} }
DiscogsFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const DiscogsFetcher* fetcher_) DiscogsFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const DiscogsFetcher* fetcher_)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 2, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 2, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -76,7 +76,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const DiscogsFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const DiscogsFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup&); virtual void saveConfig(KConfigGroup&);
virtual TQString preferredName() const; virtual TQString preferredName() const;
private: private:

@ -45,7 +45,7 @@ namespace {
using Tellico::Fetch::EntrezFetcher; using Tellico::Fetch::EntrezFetcher;
EntrezFetcher::EntrezFetcher(TQObject* tqparent_, const char* name_) : Fetcher(tqparent_, name_), m_xsltHandler(0), EntrezFetcher::EntrezFetcher(TQObject* parent_, const char* name_) : Fetcher(parent_, name_), m_xsltHandler(0),
m_step(Begin), m_started(false) { m_step(Begin), m_started(false) {
} }
@ -463,12 +463,12 @@ void EntrezFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* EntrezFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* EntrezFetcher::configWidget(TQWidget* parent_) const {
return new EntrezFetcher::ConfigWidget(tqparent_, this); return new EntrezFetcher::ConfigWidget(parent_, this);
} }
EntrezFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const EntrezFetcher* fetcher_/*=0*/) EntrezFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const EntrezFetcher* fetcher_/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -63,7 +63,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const EntrezFetcher* fetcher=0); ConfigWidget(TQWidget* parent_, const EntrezFetcher* fetcher=0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -70,7 +70,7 @@ TQStringList ExecExternalFetcher::parseArguments(const TQString& str_) {
return args; return args;
} }
ExecExternalFetcher::ExecExternalFetcher(TQObject* tqparent_, const char* name_/*=0*/) : Fetcher(tqparent_, name_), ExecExternalFetcher::ExecExternalFetcher(TQObject* parent_, const char* name_/*=0*/) : Fetcher(parent_, name_),
m_started(false), m_collType(-1), m_formatType(-1), m_canUpdate(false), m_process(0), m_deleteOnRemove(false) { m_started(false), m_collType(-1), m_formatType(-1), m_canUpdate(false), m_process(0), m_deleteOnRemove(false) {
} }
@ -331,12 +331,12 @@ void ExecExternalFetcher::updateEntry(Data::EntryPtr entry_) {
startSearch(args); startSearch(args);
} }
Tellico::Fetch::ConfigWidget* ExecExternalFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* ExecExternalFetcher::configWidget(TQWidget* parent_) const {
return new ExecExternalFetcher::ConfigWidget(tqparent_, this); return new ExecExternalFetcher::ConfigWidget(parent_, this);
} }
ExecExternalFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const ExecExternalFetcher* fetcher_/*=0*/) ExecExternalFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const ExecExternalFetcher* fetcher_/*=0*/)
: Fetch::ConfigWidget(tqparent_), m_deleteOnRemove(false) { : Fetch::ConfigWidget(parent_), m_deleteOnRemove(false) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 5, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 5, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -463,32 +463,32 @@ Tellico::Fetch::TypePairList Manager::typeList() {
// called when creating a new fetcher // called when creating a new fetcher
Tellico::Fetch::ConfigWidget* Manager::configWidget(TQWidget* tqparent_, Type type_, const TQString& name_) { Tellico::Fetch::ConfigWidget* Manager::configWidget(TQWidget* parent_, Type type_, const TQString& name_) {
ConfigWidget* w = 0; ConfigWidget* w = 0;
switch(type_) { switch(type_) {
#ifdef AMAZON_SUPPORT #ifdef AMAZON_SUPPORT
case Amazon: case Amazon:
w = new AmazonFetcher::ConfigWidget(tqparent_); w = new AmazonFetcher::ConfigWidget(parent_);
break; break;
#endif #endif
#ifdef IMDB_SUPPORT #ifdef IMDB_SUPPORT
case IMDB: case IMDB:
w = new IMDBFetcher::ConfigWidget(tqparent_); w = new IMDBFetcher::ConfigWidget(parent_);
break; break;
#endif #endif
#ifdef HAVE_YAZ #ifdef HAVE_YAZ
case Z3950: case Z3950:
w = new Z3950Fetcher::ConfigWidget(tqparent_); w = new Z3950Fetcher::ConfigWidget(parent_);
break; break;
#endif #endif
case SRU: case SRU:
w = new SRUConfigWidget(tqparent_); w = new SRUConfigWidget(parent_);
break; break;
case Entrez: case Entrez:
w = new EntrezFetcher::ConfigWidget(tqparent_); w = new EntrezFetcher::ConfigWidget(parent_);
break; break;
case ExecExternal: case ExecExternal:
w = new ExecExternalFetcher::ConfigWidget(tqparent_); w = new ExecExternalFetcher::ConfigWidget(parent_);
if(!name_.isEmpty() && m_scriptMap.tqcontains(name_)) { if(!name_.isEmpty() && m_scriptMap.tqcontains(name_)) {
// bundledScriptHasExecPath() actually needs to write the exec path // bundledScriptHasExecPath() actually needs to write the exec path
// back to the config so the configWidget can read it. But if the spec file // back to the config so the configWidget can read it. But if the spec file
@ -512,37 +512,37 @@ Tellico::Fetch::ConfigWidget* Manager::configWidget(TQWidget* tqparent_, Type ty
} }
break; break;
case Yahoo: case Yahoo:
w = new YahooFetcher::ConfigWidget(tqparent_); w = new YahooFetcher::ConfigWidget(parent_);
break; break;
case AnimeNfo: case AnimeNfo:
w = new AnimeNfoFetcher::ConfigWidget(tqparent_); w = new AnimeNfoFetcher::ConfigWidget(parent_);
break; break;
case IBS: case IBS:
w = new IBSFetcher::ConfigWidget(tqparent_); w = new IBSFetcher::ConfigWidget(parent_);
break; break;
case ISBNdb: case ISBNdb:
w = new ISBNdbFetcher::ConfigWidget(tqparent_); w = new ISBNdbFetcher::ConfigWidget(parent_);
break; break;
case GCstarPlugin: case GCstarPlugin:
w = new GCstarPluginFetcher::ConfigWidget(tqparent_); w = new GCstarPluginFetcher::ConfigWidget(parent_);
break; break;
case CrossRef: case CrossRef:
w = new CrossRefFetcher::ConfigWidget(tqparent_); w = new CrossRefFetcher::ConfigWidget(parent_);
break; break;
case Arxiv: case Arxiv:
w = new ArxivFetcher::ConfigWidget(tqparent_); w = new ArxivFetcher::ConfigWidget(parent_);
break; break;
case Citebase: case Citebase:
w = new CitebaseFetcher::ConfigWidget(tqparent_); w = new CitebaseFetcher::ConfigWidget(parent_);
break; break;
case Bibsonomy: case Bibsonomy:
w = new BibsonomyFetcher::ConfigWidget(tqparent_); w = new BibsonomyFetcher::ConfigWidget(parent_);
break; break;
case GoogleScholar: case GoogleScholar:
w = new GoogleScholarFetcher::ConfigWidget(tqparent_); w = new GoogleScholarFetcher::ConfigWidget(parent_);
break; break;
case Discogs: case Discogs:
w = new DiscogsFetcher::ConfigWidget(tqparent_); w = new DiscogsFetcher::ConfigWidget(parent_);
break; break;
case Unknown: case Unknown:
kdWarning() << "Fetch::Manager::configWidget() - no widget defined for type = " << type_ << endl; kdWarning() << "Fetch::Manager::configWidget() - no widget defined for type = " << type_ << endl;

@ -178,7 +178,7 @@ TQString GCstarPluginFetcher::gcstarType(int collType_) {
return TQString(); return TQString();
} }
GCstarPluginFetcher::GCstarPluginFetcher(TQObject* tqparent_, const char* name_/*=0*/) : Fetcher(tqparent_, name_), GCstarPluginFetcher::GCstarPluginFetcher(TQObject* parent_, const char* name_/*=0*/) : Fetcher(parent_, name_),
m_started(false), m_collType(-1), m_process(0) { m_started(false), m_collType(-1), m_process(0) {
} }
@ -383,12 +383,12 @@ void GCstarPluginFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* GCstarPluginFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* GCstarPluginFetcher::configWidget(TQWidget* parent_) const {
return new GCstarPluginFetcher::ConfigWidget(tqparent_, this); return new GCstarPluginFetcher::ConfigWidget(parent_, this);
} }
GCstarPluginFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const GCstarPluginFetcher* fetcher_/*=0*/) GCstarPluginFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const GCstarPluginFetcher* fetcher_/*=0*/)
: Fetch::ConfigWidget(tqparent_), m_needPluginList(true) { : Fetch::ConfigWidget(parent_), m_needPluginList(true) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 3, 4); TQGridLayout* l = new TQGridLayout(optionsWidget(), 3, 4);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -34,8 +34,8 @@ namespace {
using Tellico::Fetch::GoogleScholarFetcher; using Tellico::Fetch::GoogleScholarFetcher;
GoogleScholarFetcher::GoogleScholarFetcher(TQObject* tqparent_, const char* name_) GoogleScholarFetcher::GoogleScholarFetcher(TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), : Fetcher(parent_, name_),
m_limit(GOOGLE_MAX_RETURNS_TOTAL), m_start(0), m_job(0), m_started(false), m_limit(GOOGLE_MAX_RETURNS_TOTAL), m_start(0), m_job(0), m_started(false),
m_cookieIsSet(false) { m_cookieIsSet(false) {
m_bibtexRx = TQRegExp(TQString::tqfromLatin1("<a\\s.*href\\s*=\\s*\"([^>]*scholar\\.bib[^>]*)\"")); m_bibtexRx = TQRegExp(TQString::tqfromLatin1("<a\\s.*href\\s*=\\s*\"([^>]*scholar\\.bib[^>]*)\""));
@ -215,12 +215,12 @@ void GoogleScholarFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* GoogleScholarFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* GoogleScholarFetcher::configWidget(TQWidget* parent_) const {
return new GoogleScholarFetcher::ConfigWidget(tqparent_, this); return new GoogleScholarFetcher::ConfigWidget(parent_, this);
} }
GoogleScholarFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const GoogleScholarFetcher*/*=0*/) GoogleScholarFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const GoogleScholarFetcher*/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -68,7 +68,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const GoogleScholarFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const GoogleScholarFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup&) {} virtual void saveConfig(KConfigGroup&) {}
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -39,8 +39,8 @@ namespace {
using Tellico::Fetch::IBSFetcher; using Tellico::Fetch::IBSFetcher;
IBSFetcher::IBSFetcher(TQObject* tqparent_, const char* name_ /*=0*/) IBSFetcher::IBSFetcher(TQObject* parent_, const char* name_ /*=0*/)
: Fetcher(tqparent_, name_), m_started(false) { : Fetcher(parent_, name_), m_started(false) {
} }
TQString IBSFetcher::defaultName() { TQString IBSFetcher::defaultName() {
@ -397,12 +397,12 @@ void IBSFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* IBSFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* IBSFetcher::configWidget(TQWidget* parent_) const {
return new IBSFetcher::ConfigWidget(tqparent_); return new IBSFetcher::ConfigWidget(parent_);
} }
IBSFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_) IBSFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -57,7 +57,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_); ConfigWidget(TQWidget* parent_);
virtual void saveConfig(KConfigGroup&) {} virtual void saveConfig(KConfigGroup&) {}
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -74,7 +74,7 @@ void IMDBFetcher::initRegExps() {
s_titleRx->setMinimal(true); s_titleRx->setMinimal(true);
} }
IMDBFetcher::IMDBFetcher(TQObject* tqparent_, const char* name_) : Fetcher(tqparent_, name_), IMDBFetcher::IMDBFetcher(TQObject* parent_, const char* name_) : Fetcher(parent_, name_),
m_job(0), m_started(false), m_fetchImages(true), m_host(TQString::tqfromLatin1(IMDB_SERVER)), m_job(0), m_started(false), m_fetchImages(true), m_host(TQString::tqfromLatin1(IMDB_SERVER)),
m_limit(IMDB_MAX_RESULTS), m_countOffset(0) { m_limit(IMDB_MAX_RESULTS), m_countOffset(0) {
if(!s_tagRx) { if(!s_tagRx) {
@ -261,10 +261,10 @@ void IMDBFetcher::slotComplete(KIO::Job* job_) {
void IMDBFetcher::parseSingleTitleResult() { void IMDBFetcher::parseSingleTitleResult() {
// myDebug() << "IMDBFetcher::parseSingleTitleResult()" << endl; // myDebug() << "IMDBFetcher::parseSingleTitleResult()" << endl;
s_titleRx->search(Tellico::decodeHTML(TQString(m_data))); s_titleRx->search(Tellico::decodeHTML(TQString(m_data)));
// split title at tqparenthesis // split title at parenthesis
const TQString cap1 = s_titleRx->cap(1); const TQString cap1 = s_titleRx->cap(1);
int pPos = cap1.tqfind('('); int pPos = cap1.tqfind('(');
// FIXME: maybe remove tqparentheses here? // FIXME: maybe remove parentheses here?
SearchResult* r = new SearchResult(this, SearchResult* r = new SearchResult(this,
pPos == -1 ? cap1 : cap1.left(pPos), pPos == -1 ? cap1 : cap1.left(pPos),
pPos == -1 ? TQString() : cap1.mid(pPos), pPos == -1 ? TQString() : cap1.mid(pPos),
@ -344,11 +344,11 @@ void IMDBFetcher::parseTitleBlock(const TQString& str_) {
int count = 0; int count = 0;
int start = s_anchorTitleRx->search(str_); int start = s_anchorTitleRx->search(str_);
while(m_started && start > -1) { while(m_started && start > -1) {
// split title at tqparenthesis // split title at parenthesis
const TQString cap1 = s_anchorTitleRx->cap(1); // the anchor url const TQString cap1 = s_anchorTitleRx->cap(1); // the anchor url
const TQString cap2 = s_anchorTitleRx->cap(2).stripWhiteSpace(); // the anchor text const TQString cap2 = s_anchorTitleRx->cap(2).stripWhiteSpace(); // the anchor text
start += s_anchorTitleRx->matchedLength(); start += s_anchorTitleRx->matchedLength();
int pPos = cap2.tqfind('('); // if it has tqparentheses, use that for description int pPos = cap2.tqfind('('); // if it has parentheses, use that for description
TQString desc; TQString desc;
if(pPos > -1) { if(pPos > -1) {
int pPos2 = cap2.tqfind(')', pPos+1); int pPos2 = cap2.tqfind(')', pPos+1);
@ -356,7 +356,7 @@ void IMDBFetcher::parseTitleBlock(const TQString& str_) {
desc = cap2.mid(pPos+1, pPos2-pPos-1); desc = cap2.mid(pPos+1, pPos2-pPos-1);
} }
} else { } else {
// tqparenthesis might be outside anchor tag // parenthesis might be outside anchor tag
int end = s_anchorTitleRx->search(str_, start); int end = s_anchorTitleRx->search(str_, start);
if(end == -1) { if(end == -1) {
end = str_.length(); end = str_.length();
@ -434,7 +434,7 @@ void IMDBFetcher::parseSingleNameResult() {
desc.truncate(0); desc.truncate(0);
bool isEpisode = false; bool isEpisode = false;
len = s_anchorTitleRx->cap(0).length(); len = s_anchorTitleRx->cap(0).length();
// split title at tqparenthesis // split title at parenthesis
const TQString cap2 = s_anchorTitleRx->cap(2).stripWhiteSpace(); const TQString cap2 = s_anchorTitleRx->cap(2).stripWhiteSpace();
int pPos = cap2.tqfind('('); int pPos = cap2.tqfind('(');
if(pPos > -1) { if(pPos > -1) {
@ -479,7 +479,7 @@ void IMDBFetcher::parseSingleNameResult() {
break; break;
} }
// FIXME: maybe remove tqparentheses here? // FIXME: maybe remove parentheses here?
SearchResult* r = new SearchResult(this, pPos == -1 ? cap2 : cap2.left(pPos), desc, TQString()); SearchResult* r = new SearchResult(this, pPos == -1 ? cap2 : cap2.left(pPos), desc, TQString());
KURL u(m_url, s_anchorTitleRx->cap(1)); // relative URL constructor KURL u(m_url, s_anchorTitleRx->cap(1)); // relative URL constructor
u.setQuery(TQString()); u.setQuery(TQString());
@ -528,7 +528,7 @@ void IMDBFetcher::parseMultipleNameResults() {
while(pos > -1 && pos < end && m_matches.size() < m_limit) { while(pos > -1 && pos < end && m_matches.size() < m_limit) {
KURL u(m_url, s_anchorNameRx->cap(1)); KURL u(m_url, s_anchorNameRx->cap(1));
s = s_anchorNameRx->cap(2).stripWhiteSpace() + ' '; s = s_anchorNameRx->cap(2).stripWhiteSpace() + ' ';
// if more than one exact, add tqparentheses // if more than one exact, add parentheses
if(nameMap.tqcontains(s) && nameMap[s] > 0) { if(nameMap.tqcontains(s) && nameMap[s] > 0) {
// fix the first one that didn't have a number // fix the first one that didn't have a number
if(nameMap[s] == 1) { if(nameMap[s] == 1) {
@ -700,7 +700,7 @@ Tellico::Data::EntryPtr IMDBFetcher::parseEntry(const TQString& str_) {
void IMDBFetcher::doTitle(const TQString& str_, Data::EntryPtr entry_) { void IMDBFetcher::doTitle(const TQString& str_, Data::EntryPtr entry_) {
if(s_titleRx->search(str_) > -1) { if(s_titleRx->search(str_) > -1) {
const TQString cap1 = s_titleRx->cap(1); const TQString cap1 = s_titleRx->cap(1);
// titles always have tqparentheses // titles always have parentheses
int pPos = cap1.tqfind('('); int pPos = cap1.tqfind('(');
TQString title = cap1.left(pPos).stripWhiteSpace(); TQString title = cap1.left(pPos).stripWhiteSpace();
// remove first and last quotes is there // remove first and last quotes is there
@ -708,7 +708,7 @@ void IMDBFetcher::doTitle(const TQString& str_, Data::EntryPtr entry_) {
title = title.mid(1, title.length()-2); title = title.mid(1, title.length()-2);
} }
entry_->setField(TQString::tqfromLatin1("title"), title); entry_->setField(TQString::tqfromLatin1("title"), title);
// remove tqparenthesis // remove parenthesis
uint pPos2 = pPos+1; uint pPos2 = pPos+1;
while(pPos2 < cap1.length() && cap1[pPos2].isDigit()) { while(pPos2 < cap1.length() && cap1[pPos2].isDigit()) {
++pPos2; ++pPos2;
@ -1123,12 +1123,12 @@ void IMDBFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* IMDBFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* IMDBFetcher::configWidget(TQWidget* parent_) const {
return new IMDBFetcher::ConfigWidget(tqparent_, this); return new IMDBFetcher::ConfigWidget(parent_, this);
} }
IMDBFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const IMDBFetcher* fetcher_/*=0*/) IMDBFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const IMDBFetcher* fetcher_/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -66,7 +66,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const IMDBFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const IMDBFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;

@ -39,8 +39,8 @@ namespace {
using Tellico::Fetch::ISBNdbFetcher; using Tellico::Fetch::ISBNdbFetcher;
ISBNdbFetcher::ISBNdbFetcher(TQObject* tqparent_, const char* name_) ISBNdbFetcher::ISBNdbFetcher(TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), m_xsltHandler(0), : Fetcher(parent_, name_), m_xsltHandler(0),
m_limit(ISBNDB_MAX_RETURNS_TOTAL), m_page(1), m_total(-1), m_countOffset(0), m_limit(ISBNDB_MAX_RETURNS_TOTAL), m_page(1), m_total(-1), m_countOffset(0),
m_job(0), m_started(false) { m_job(0), m_started(false) {
} }
@ -332,12 +332,12 @@ void ISBNdbFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* ISBNdbFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* ISBNdbFetcher::configWidget(TQWidget* parent_) const {
return new ISBNdbFetcher::ConfigWidget(tqparent_, this); return new ISBNdbFetcher::ConfigWidget(parent_, this);
} }
ISBNdbFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const ISBNdbFetcher*/*=0*/) ISBNdbFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const ISBNdbFetcher*/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -58,7 +58,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const ISBNdbFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const ISBNdbFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup&) {} virtual void saveConfig(KConfigGroup&) {}
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -51,12 +51,12 @@ namespace {
using Tellico::Fetch::SRUFetcher; using Tellico::Fetch::SRUFetcher;
using Tellico::Fetch::SRUConfigWidget; using Tellico::Fetch::SRUConfigWidget;
SRUFetcher::SRUFetcher(TQObject* tqparent_, const char* name_) SRUFetcher::SRUFetcher(TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) { : Fetcher(parent_, name_), m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) {
} }
SRUFetcher::SRUFetcher(const TQString& name_, const TQString& host_, uint port_, const TQString& path_, SRUFetcher::SRUFetcher(const TQString& name_, const TQString& host_, uint port_, const TQString& path_,
TQObject* tqparent_) : Fetcher(tqparent_), TQObject* parent_) : Fetcher(parent_),
m_host(host_), m_port(port_), m_path(path_), m_host(host_), m_port(port_), m_path(path_),
m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) { m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) {
m_name = name_; // m_name is protected in super class m_name = name_; // m_name is protected in super class
@ -412,9 +412,9 @@ bool SRUFetcher::initMODSHandler() {
return true; return true;
} }
Tellico::Fetch::Fetcher::Ptr SRUFetcher::libraryOfCongress(TQObject* tqparent_) { Tellico::Fetch::Fetcher::Ptr SRUFetcher::libraryOfCongress(TQObject* parent_) {
return new SRUFetcher(i18n("Library of Congress (US)"), TQString::tqfromLatin1("z3950.loc.gov"), 7090, return new SRUFetcher(i18n("Library of Congress (US)"), TQString::tqfromLatin1("z3950.loc.gov"), 7090,
TQString::tqfromLatin1("voyager"), tqparent_); TQString::tqfromLatin1("voyager"), parent_);
} }
// static // static
@ -425,12 +425,12 @@ Tellico::StringMap SRUFetcher::customFields() {
return map; return map;
} }
Tellico::Fetch::ConfigWidget* SRUFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* SRUFetcher::configWidget(TQWidget* parent_) const {
return new SRUConfigWidget(tqparent_, this); return new SRUConfigWidget(parent_, this);
} }
SRUConfigWidget::SRUConfigWidget(TQWidget* tqparent_, const SRUFetcher* fetcher_ /*=0*/) SRUConfigWidget::SRUConfigWidget(TQWidget* parent_, const SRUFetcher* fetcher_ /*=0*/)
: ConfigWidget(tqparent_) { : ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -114,7 +114,7 @@ Q_OBJECT
friend class SRUFetcher; friend class SRUFetcher;
public: public:
SRUConfigWidget(TQWidget* tqparent_, const SRUFetcher* fetcher = 0); SRUConfigWidget(TQWidget* parent_, const SRUFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup& config); virtual void saveConfig(KConfigGroup& config);
virtual TQString preferredName() const; virtual TQString preferredName() const;

@ -40,8 +40,8 @@ namespace {
using Tellico::Fetch::YahooFetcher; using Tellico::Fetch::YahooFetcher;
YahooFetcher::YahooFetcher(TQObject* tqparent_, const char* name_) YahooFetcher::YahooFetcher(TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), m_xsltHandler(0), : Fetcher(parent_, name_), m_xsltHandler(0),
m_limit(YAHOO_MAX_RETURNS_TOTAL), m_job(0), m_started(false) { m_limit(YAHOO_MAX_RETURNS_TOTAL), m_job(0), m_started(false) {
} }
@ -382,12 +382,12 @@ void YahooFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* YahooFetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* YahooFetcher::configWidget(TQWidget* parent_) const {
return new YahooFetcher::ConfigWidget(tqparent_, this); return new YahooFetcher::ConfigWidget(parent_, this);
} }
YahooFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const YahooFetcher*/*=0*/) YahooFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const YahooFetcher*/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch(); l->addStretch();

@ -69,7 +69,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget { class ConfigWidget : public Fetch::ConfigWidget {
public: public:
ConfigWidget(TQWidget* tqparent_, const YahooFetcher* fetcher = 0); ConfigWidget(TQWidget* parent_, const YahooFetcher* fetcher = 0);
virtual void saveConfig(KConfigGroup&) {} virtual void saveConfig(KConfigGroup&) {}
virtual TQString preferredName() const; virtual TQString preferredName() const;
}; };

@ -59,8 +59,8 @@ namespace {
using Tellico::Fetch::Z3950Fetcher; using Tellico::Fetch::Z3950Fetcher;
Z3950Fetcher::Z3950Fetcher(TQObject* tqparent_, const char* name_) Z3950Fetcher::Z3950Fetcher(TQObject* parent_, const char* name_)
: Fetcher(tqparent_, name_), m_conn(0), m_port(Z3950_DEFAULT_PORT), m_esn(Z3950_DEFAULT_ESN), : Fetcher(parent_, name_), m_conn(0), m_port(Z3950_DEFAULT_PORT), m_esn(Z3950_DEFAULT_ESN),
m_started(false), m_done(true), m_MARC21XMLHandler(0), m_started(false), m_done(true), m_MARC21XMLHandler(0),
m_UNIMARCXMLHandler(0), m_MODSHandler(0) { m_UNIMARCXMLHandler(0), m_MODSHandler(0) {
} }
@ -503,12 +503,12 @@ void Z3950Fetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search emit signalDone(this); // always need to emit this if not continuing with the search
} }
Tellico::Fetch::ConfigWidget* Z3950Fetcher::configWidget(TQWidget* tqparent_) const { Tellico::Fetch::ConfigWidget* Z3950Fetcher::configWidget(TQWidget* parent_) const {
return new Z3950Fetcher::ConfigWidget(tqparent_, this); return new Z3950Fetcher::ConfigWidget(parent_, this);
} }
Z3950Fetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const Z3950Fetcher* fetcher_/*=0*/) Z3950Fetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const Z3950Fetcher* fetcher_/*=0*/)
: Fetch::ConfigWidget(tqparent_) { : Fetch::ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 7, 2); TQGridLayout* l = new TQGridLayout(optionsWidget(), 7, 2);
l->setSpacing(4); l->setSpacing(4);
l->setColStretch(1, 10); l->setColStretch(1, 10);

@ -82,8 +82,8 @@ class FetchDialog::SearchResultItem : public Tellico::GUI::ListViewItem {
Fetch::SearchResult* m_result; Fetch::SearchResult* m_result;
}; };
FetchDialog::FetchDialog(TQWidget* tqparent_, const char* name_) FetchDialog::FetchDialog(TQWidget* parent_, const char* name_)
: KDialogBase(tqparent_, name_, false, i18n("Internet Search"), 0), : KDialogBase(parent_, name_, false, i18n("Internet Search"), 0),
m_timer(new TQTimer(this)), m_started(false) { m_timer(new TQTimer(this)), m_started(false) {
m_collType = Kernel::self()->collectionType(); m_collType = Kernel::self()->collectionType();
@ -288,7 +288,7 @@ FetchDialog::~FetchDialog() {
saveDialogSize(TQString::tqfromLatin1("Fetch Dialog Options")); saveDialogSize(TQString::tqfromLatin1("Fetch Dialog Options"));
KConfigGroup config(kapp->config(), "Fetch Dialog Options"); KConfigGroup config(kapp->config(), "Fetch Dialog Options");
config.writeEntry("Splitter Sizes", static_cast<TQSplitter*>(m_listView->tqparentWidget())->sizes()); config.writeEntry("Splitter Sizes", static_cast<TQSplitter*>(m_listView->parentWidget())->sizes());
config.writeEntry("Search Key", m_keyCombo->currentData().toInt()); config.writeEntry("Search Key", m_keyCombo->currentData().toInt());
config.writeEntry("Search Source", m_sourceCombo->currentText()); config.writeEntry("Search Source", m_sourceCombo->currentText());
} }

@ -35,8 +35,8 @@ namespace {
using Tellico::FetcherConfigDialog; using Tellico::FetcherConfigDialog;
FetcherConfigDialog::FetcherConfigDialog(TQWidget* tqparent_) FetcherConfigDialog::FetcherConfigDialog(TQWidget* parent_)
: KDialogBase(tqparent_, "fetcher dialog", true, i18n("Data Source Properties"), : KDialogBase(parent_, "fetcher dialog", true, i18n("Data Source Properties"),
KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::Help) KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::Help)
, m_newSource(true) , m_newSource(true)
, m_useDefaultName(true) , m_useDefaultName(true)
@ -45,8 +45,8 @@ FetcherConfigDialog::FetcherConfigDialog(TQWidget* tqparent_)
} }
FetcherConfigDialog::FetcherConfigDialog(const TQString& sourceName_, Fetch::Type type_, bool updateOverwrite_, FetcherConfigDialog::FetcherConfigDialog(const TQString& sourceName_, Fetch::Type type_, bool updateOverwrite_,
Fetch::ConfigWidget* configWidget_, TQWidget* tqparent_) Fetch::ConfigWidget* configWidget_, TQWidget* parent_)
: KDialogBase(tqparent_, "fetcher dialog", true, i18n("Data Source Properties"), : KDialogBase(parent_, "fetcher dialog", true, i18n("Data Source Properties"),
KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::Help) KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::Help)
, m_newSource(false) , m_newSource(false)
, m_useDefaultName(false) , m_useDefaultName(false)

@ -42,8 +42,8 @@ using Tellico::FilterRuleWidget;
using Tellico::FilterRuleWidgetLister; using Tellico::FilterRuleWidgetLister;
using Tellico::FilterDialog; using Tellico::FilterDialog;
FilterRuleWidget::FilterRuleWidget(FilterRule* rule_, TQWidget* tqparent_, const char* name_/*=0*/) FilterRuleWidget::FilterRuleWidget(FilterRule* rule_, TQWidget* parent_, const char* name_/*=0*/)
: TQHBox(tqparent_, name_), m_editRegExp(0), m_editRegExpDialog(0) { : TQHBox(parent_, name_), m_editRegExp(0), m_editRegExpDialog(0) {
initLists(); initLists();
initWidget(); initWidget();
@ -207,8 +207,8 @@ namespace {
static const int FILTER_MAX_RULES = 8; static const int FILTER_MAX_RULES = 8;
} }
FilterRuleWidgetLister::FilterRuleWidgetLister(TQWidget* tqparent_, const char* name_) FilterRuleWidgetLister::FilterRuleWidgetLister(TQWidget* parent_, const char* name_)
: KWidgetLister(FILTER_MIN_RULE_WIDGETS, FILTER_MAX_RULES, tqparent_, name_) { : KWidgetLister(FILTER_MIN_RULE_WIDGETS, FILTER_MAX_RULES, parent_, name_) {
// slotClear(); // slotClear();
} }
@ -253,8 +253,8 @@ void FilterRuleWidgetLister::setFocus() {
} }
} }
TQWidget* FilterRuleWidgetLister::createWidget(TQWidget* tqparent_) { TQWidget* FilterRuleWidgetLister::createWidget(TQWidget* parent_) {
TQWidget* w = new FilterRuleWidget(static_cast<Tellico::FilterRule*>(0), tqparent_); TQWidget* w = new FilterRuleWidget(static_cast<Tellico::FilterRule*>(0), parent_);
connect(w, TQT_SIGNAL(signalModified()), TQT_SIGNAL(signalModified())); connect(w, TQT_SIGNAL(signalModified()), TQT_SIGNAL(signalModified()));
return w; return w;
} }
@ -277,8 +277,8 @@ namespace {
// modal dialog so I don't have to worry about updating stuff // modal dialog so I don't have to worry about updating stuff
// don't show apply button if not saving, i.e. just modifying existing filter // don't show apply button if not saving, i.e. just modifying existing filter
FilterDialog::FilterDialog(Mode mode_, TQWidget* tqparent_, const char* name_/*=0*/) FilterDialog::FilterDialog(Mode mode_, TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(tqparent_, name_, true, : KDialogBase(parent_, name_, true,
(mode_ == CreateFilter ? i18n("Advanced Filter") : i18n("Modify Filter")), (mode_ == CreateFilter ? i18n("Advanced Filter") : i18n("Modify Filter")),
(mode_ == CreateFilter ? Help|Ok|Apply|Cancel : Help|Ok|Cancel), (mode_ == CreateFilter ? Help|Ok|Apply|Cancel : Help|Ok|Cancel),
Ok, false), Ok, false),

@ -20,8 +20,8 @@
using Tellico::FilterItem; using Tellico::FilterItem;
FilterItem::FilterItem(GUI::ListView* tqparent_, Filter::Ptr filter_) FilterItem::FilterItem(GUI::ListView* parent_, Filter::Ptr filter_)
: GUI::CountedItem(tqparent_), m_filter(filter_) { : GUI::CountedItem(parent_), m_filter(filter_) {
setText(0, filter_->name()); setText(0, filter_->name());
setPixmap(0, SmallIcon(TQString::tqfromLatin1("filter"))); setPixmap(0, SmallIcon(TQString::tqfromLatin1("filter")));
} }

@ -29,7 +29,7 @@
using Tellico::FilterView; using Tellico::FilterView;
FilterView::FilterView(TQWidget* tqparent_, const char* name_) : GUI::ListView(tqparent_, name_), m_notSortedYet(true) { FilterView::FilterView(TQWidget* parent_, const char* name_) : GUI::ListView(parent_, name_), m_notSortedYet(true) {
addColumn(i18n("Filter")); addColumn(i18n("Filter"));
header()->setStretchEnabled(true, 0); header()->setStretchEnabled(true, 0);
setResizeMode(TQListView::NoColumn); setResizeMode(TQListView::NoColumn);

@ -38,8 +38,8 @@
using Tellico::GroupView; using Tellico::GroupView;
GroupView::GroupView(TQWidget* tqparent_, const char* name_/*=0*/) GroupView::GroupView(TQWidget* parent_, const char* name_/*=0*/)
: GUI::ListView(tqparent_, name_), m_notSortedYet(true), m_coll(0) { : GUI::ListView(parent_, name_), m_notSortedYet(true), m_coll(0) {
addColumn(TQString()); // header text gets updated later addColumn(TQString()); // header text gets updated later
header()->setStretchEnabled(true, 0); header()->setStretchEnabled(true, 0);
setResizeMode(TQListView::NoColumn); setResizeMode(TQListView::NoColumn);

@ -21,8 +21,8 @@
using Tellico::GUI::BoolFieldWidget; using Tellico::GUI::BoolFieldWidget;
BoolFieldWidget::BoolFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) BoolFieldWidget::BoolFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_) { : FieldWidget(field_, parent_, name_) {
m_checkBox = new TQCheckBox(this); m_checkBox = new TQCheckBox(this);
connect(m_checkBox, TQT_SIGNAL(clicked()), TQT_SIGNAL(modified())); connect(m_checkBox, TQT_SIGNAL(clicked()), TQT_SIGNAL(modified()));

@ -21,8 +21,8 @@
using Tellico::GUI::ChoiceFieldWidget; using Tellico::GUI::ChoiceFieldWidget;
ChoiceFieldWidget::ChoiceFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) ChoiceFieldWidget::ChoiceFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_), m_comboBox(0) { : FieldWidget(field_, parent_, name_), m_comboBox(0) {
m_comboBox = new KComboBox(this); m_comboBox = new KComboBox(this);
connect(m_comboBox, TQT_SIGNAL(activated(int)), TQT_SIGNAL(modified())); connect(m_comboBox, TQT_SIGNAL(activated(int)), TQT_SIGNAL(modified()));

@ -17,7 +17,7 @@
using Tellico::GUI::CollectionTypeCombo; using Tellico::GUI::CollectionTypeCombo;
CollectionTypeCombo::CollectionTypeCombo(TQWidget* tqparent_) : ComboBox(tqparent_) { CollectionTypeCombo::CollectionTypeCombo(TQWidget* parent_) : ComboBox(parent_) {
reset(); reset();
} }

@ -17,7 +17,7 @@
using Tellico::GUI::ComboBox; using Tellico::GUI::ComboBox;
ComboBox::ComboBox(TQWidget* tqparent_) : KComboBox(tqparent_) { ComboBox::ComboBox(TQWidget* parent_) : KComboBox(parent_) {
setEditable(false); setEditable(false);
} }

@ -31,7 +31,7 @@ namespace Tellico {
*/ */
class ComboBox : public KComboBox { class ComboBox : public KComboBox {
public: public:
ComboBox(TQWidget* tqparent_); ComboBox(TQWidget* parent_);
void clear(); void clear();
const TQVariant& currentData() const; const TQVariant& currentData() const;

@ -17,8 +17,8 @@
using Tellico::GUI::DateFieldWidget; using Tellico::GUI::DateFieldWidget;
DateFieldWidget::DateFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) DateFieldWidget::DateFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_) { : FieldWidget(field_, parent_, name_) {
m_widget = new DateWidget(this); m_widget = new DateWidget(this);
connect(m_widget, TQT_SIGNAL(signalModified()), TQT_SIGNAL(modified())); connect(m_widget, TQT_SIGNAL(signalModified()), TQT_SIGNAL(modified()));

@ -40,7 +40,7 @@ SpinBox::SpinBox(int min, int max, TQWidget *tqparent) : TQSpinBox(min, max, 1,
setSpecialValueText(TQChar(' ')); setSpecialValueText(TQChar(' '));
} }
DateWidget::DateWidget(TQWidget* tqparent_, const char* name_) : TQWidget(tqparent_, name_) { DateWidget::DateWidget(TQWidget* parent_, const char* name_) : TQWidget(parent_, name_) {
TQHBoxLayout* l = new TQHBoxLayout(this, 0, 4); TQHBoxLayout* l = new TQHBoxLayout(this, 0, 4);
KLocale* locale = KGlobal::locale(); KLocale* locale = KGlobal::locale();

@ -45,38 +45,38 @@ using Tellico::GUI::FieldWidget;
const TQRegExp FieldWidget::s_semiColon = TQRegExp(TQString::tqfromLatin1("\\s*;\\s*")); const TQRegExp FieldWidget::s_semiColon = TQRegExp(TQString::tqfromLatin1("\\s*;\\s*"));
FieldWidget* FieldWidget::create(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_) { FieldWidget* FieldWidget::create(Data::FieldPtr field_, TQWidget* parent_, const char* name_) {
switch (field_->type()) { switch (field_->type()) {
case Data::Field::Line: case Data::Field::Line:
return new GUI::LineFieldWidget(field_, tqparent_, name_); return new GUI::LineFieldWidget(field_, parent_, name_);
case Data::Field::Para: case Data::Field::Para:
return new GUI::ParaFieldWidget(field_, tqparent_, name_); return new GUI::ParaFieldWidget(field_, parent_, name_);
case Data::Field::Bool: case Data::Field::Bool:
return new GUI::BoolFieldWidget(field_, tqparent_, name_); return new GUI::BoolFieldWidget(field_, parent_, name_);
case Data::Field::Number: case Data::Field::Number:
return new GUI::NumberFieldWidget(field_, tqparent_, name_); return new GUI::NumberFieldWidget(field_, parent_, name_);
case Data::Field::Choice: case Data::Field::Choice:
return new GUI::ChoiceFieldWidget(field_, tqparent_, name_); return new GUI::ChoiceFieldWidget(field_, parent_, name_);
case Data::Field::Table: case Data::Field::Table:
case Data::Field::Table2: case Data::Field::Table2:
return new GUI::TableFieldWidget(field_, tqparent_, name_); return new GUI::TableFieldWidget(field_, parent_, name_);
case Data::Field::Date: case Data::Field::Date:
return new GUI::DateFieldWidget(field_, tqparent_, name_); return new GUI::DateFieldWidget(field_, parent_, name_);
case Data::Field::URL: case Data::Field::URL:
return new GUI::URLFieldWidget(field_, tqparent_, name_); return new GUI::URLFieldWidget(field_, parent_, name_);
case Data::Field::Image: case Data::Field::Image:
return new GUI::ImageFieldWidget(field_, tqparent_, name_); return new GUI::ImageFieldWidget(field_, parent_, name_);
case Data::Field::Rating: case Data::Field::Rating:
return new GUI::RatingFieldWidget(field_, tqparent_, name_); return new GUI::RatingFieldWidget(field_, parent_, name_);
case Data::Field::ReadOnly: case Data::Field::ReadOnly:
case Data::Field::Dependent: case Data::Field::Dependent:
@ -89,8 +89,8 @@ FieldWidget* FieldWidget::create(Data::FieldPtr field_, TQWidget* tqparent_, con
} }
} }
FieldWidget::FieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) FieldWidget::FieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: TQWidget(tqparent_, name_), m_field(field_) { : TQWidget(parent_, name_), m_field(field_) {
TQHBoxLayout* l = new TQHBoxLayout(this, 2, 2); // tqparent, margin, spacing TQHBoxLayout* l = new TQHBoxLayout(this, 2, 2); // tqparent, margin, spacing
l->addSpacing(4); // add some more space in the columns between widgets l->addSpacing(4); // add some more space in the columns between widgets
if(TQCString(tqstyle().name()).lower().tqfind("keramik", 0, false) > -1) { if(TQCString(tqstyle().name()).lower().tqfind("keramik", 0, false) > -1) {

@ -18,8 +18,8 @@
using Tellico::GUI::ImageFieldWidget; using Tellico::GUI::ImageFieldWidget;
ImageFieldWidget::ImageFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) ImageFieldWidget::ImageFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_) { : FieldWidget(field_, parent_, name_) {
m_widget = new ImageWidget(this); m_widget = new ImageWidget(this);
m_widget->setLinkOnlyChecked(field_->property(TQString::tqfromLatin1("link")) == Latin1Literal("true")); m_widget->setLinkOnlyChecked(field_->property(TQString::tqfromLatin1("link")) == Latin1Literal("true"));

@ -40,7 +40,7 @@ namespace {
using Tellico::GUI::ImageWidget; using Tellico::GUI::ImageWidget;
ImageWidget::ImageWidget(TQWidget* tqparent_, const char* name_) : TQWidget(tqparent_, name_) { ImageWidget::ImageWidget(TQWidget* parent_, const char* name_) : TQWidget(parent_, name_) {
TQHBoxLayout* l = new TQHBoxLayout(this); TQHBoxLayout* l = new TQHBoxLayout(this);
l->setMargin(IMAGE_WIDGET_BUTTON_MARGIN); l->setMargin(IMAGE_WIDGET_BUTTON_MARGIN);
m_label = new TQLabel(this); m_label = new TQLabel(this);

@ -23,7 +23,7 @@
using Tellico::GUI::LineEdit; using Tellico::GUI::LineEdit;
LineEdit::LineEdit(TQWidget* tqparent_, const char* name_) : KLineEdit(tqparent_, name_) LineEdit::LineEdit(TQWidget* parent_, const char* name_) : KLineEdit(parent_, name_)
, m_drawHint(false) , m_drawHint(false)
, m_allowSpellCheck(false) , m_allowSpellCheck(false)
, m_enableSpellCheck(true) , m_enableSpellCheck(true)

@ -21,8 +21,8 @@
using Tellico::GUI::LineFieldWidget; using Tellico::GUI::LineFieldWidget;
LineFieldWidget::LineFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) LineFieldWidget::LineFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_) { : FieldWidget(field_, parent_, name_) {
m_lineEdit = new GUI::LineEdit(this); m_lineEdit = new GUI::LineEdit(this);
m_lineEdit->setAllowSpellCheck(true); m_lineEdit->setAllowSpellCheck(true);

@ -25,7 +25,7 @@
using Tellico::GUI::ListView; using Tellico::GUI::ListView;
using Tellico::GUI::ListViewItem; using Tellico::GUI::ListViewItem;
ListView::ListView(TQWidget* tqparent_, const char* name_) : KListView(tqparent_, name_/*=0*/), ListView::ListView(TQWidget* parent_, const char* name_) : KListView(parent_, name_/*=0*/),
m_sortStyle(SortByText), m_isClear(true) { m_sortStyle(SortByText), m_isClear(true) {
setSelectionMode(TQListView::Extended); setSelectionMode(TQListView::Extended);
connect(this, TQT_SIGNAL(selectionChanged()), connect(this, TQT_SIGNAL(selectionChanged()),

@ -22,8 +22,8 @@
using Tellico::GUI::NumberFieldWidget; using Tellico::GUI::NumberFieldWidget;
NumberFieldWidget::NumberFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) NumberFieldWidget::NumberFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_), m_lineEdit(0), m_spinBox(0) { : FieldWidget(field_, parent_, name_), m_lineEdit(0), m_spinBox(0) {
if(field_->flags() & Data::Field::AllowMultiple) { if(field_->flags() & Data::Field::AllowMultiple) {
initLineEdit(); initLineEdit();

@ -43,7 +43,7 @@ void OverlayWidget::reposition() {
return; return;
} }
setMaximumSize(tqparentWidget()->size()); setMaximumSize(parentWidget()->size());
adjustSize(); adjustSize();
TQPoint p; TQPoint p;
@ -71,8 +71,8 @@ void OverlayWidget::reposition() {
// Position in the toplevelwidget's coordinates // Position in the toplevelwidget's coordinates
TQPoint pTopLevel = m_anchor->mapTo(tqtopLevelWidget(), p); TQPoint pTopLevel = m_anchor->mapTo(tqtopLevelWidget(), p);
// Position in the widget's tqparentWidget coordinates // Position in the widget's parentWidget coordinates
TQPoint pParent = tqparentWidget()->mapFrom(tqtopLevelWidget(), pTopLevel); TQPoint pParent = parentWidget()->mapFrom(tqtopLevelWidget(), pTopLevel);
// keep it on the screen // keep it on the screen
if(pParent.x() < 0) { if(pParent.x() < 0) {
pParent.rx() = 0; pParent.rx() = 0;

@ -19,8 +19,8 @@
using Tellico::GUI::ParaFieldWidget; using Tellico::GUI::ParaFieldWidget;
ParaFieldWidget::ParaFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) ParaFieldWidget::ParaFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_) { : FieldWidget(field_, parent_, name_) {
m_textEdit = new KTextEdit(this); m_textEdit = new KTextEdit(this);
m_textEdit->setTextFormat(TQt::PlainText); m_textEdit->setTextFormat(TQt::PlainText);

@ -22,8 +22,8 @@
using Tellico::GUI::PreviewDialog; using Tellico::GUI::PreviewDialog;
PreviewDialog::PreviewDialog(TQWidget* tqparent_) PreviewDialog::PreviewDialog(TQWidget* parent_)
: KDialogBase(tqparent_, "template preview dialog", false /* modal */, : KDialogBase(parent_, "template preview dialog", false /* modal */,
i18n("Template Preview"), KDialogBase::Ok) i18n("Template Preview"), KDialogBase::Ok)
, m_tempDir(new KTempDir()) { , m_tempDir(new KTempDir()) {
m_tempDir->setAutoDelete(true); m_tempDir->setAutoDelete(true);

@ -16,10 +16,10 @@
using Tellico::GUI::Progress; using Tellico::GUI::Progress;
Progress::Progress(TQWidget* tqparent_) : KProgress(tqparent_) { Progress::Progress(TQWidget* parent_) : KProgress(parent_) {
} }
Progress::Progress(int totalSteps_, TQWidget* tqparent_) : KProgress(totalSteps_, tqparent_) { Progress::Progress(int totalSteps_, TQWidget* parent_) : KProgress(totalSteps_, parent_) {
} }
bool Progress::isDone() const { bool Progress::isDone() const {

@ -17,8 +17,8 @@
using Tellico::GUI::RatingFieldWidget; using Tellico::GUI::RatingFieldWidget;
RatingFieldWidget::RatingFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) RatingFieldWidget::RatingFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_) { : FieldWidget(field_, parent_, name_) {
m_rating = new RatingWidget(field_, this); m_rating = new RatingWidget(field_, this);
connect(m_rating, TQT_SIGNAL(modified()), TQT_SIGNAL(modified())); connect(m_rating, TQT_SIGNAL(modified()), TQT_SIGNAL(modified()));

@ -49,8 +49,8 @@ const TQPixmap& RatingWidget::pixmap(const TQString& value_) {
return *pix; return *pix;
} }
RatingWidget::RatingWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) RatingWidget::RatingWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: TQHBox(tqparent_, name_), m_field(field_), m_currIndex(-1) { : TQHBox(parent_, name_), m_field(field_), m_currIndex(-1) {
m_pixOn = UserIcon(TQString::tqfromLatin1("star_on")); m_pixOn = UserIcon(TQString::tqfromLatin1("star_on"));
m_pixOff = UserIcon(TQString::tqfromLatin1("star_off")); m_pixOff = UserIcon(TQString::tqfromLatin1("star_off"));
setSpacing(0); setSpacing(0);

@ -27,8 +27,8 @@
using Tellico::StringMapDialog; using Tellico::StringMapDialog;
StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget* tqparent_, const char* name_/*=0*/, bool modal_/*=false*/) StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget* parent_, const char* name_/*=0*/, bool modal_/*=false*/)
: KDialogBase(tqparent_, name_, modal_, TQString(), Ok|Cancel) { : KDialogBase(parent_, name_, modal_, TQString(), Ok|Cancel) {
TQWidget* page = new TQWidget(this); TQWidget* page = new TQWidget(this);
TQVBoxLayout* l = new TQVBoxLayout(page, 0, KDialog::spacingHint()); TQVBoxLayout* l = new TQVBoxLayout(page, 0, KDialog::spacingHint());

@ -18,8 +18,8 @@
using Tellico::GUI::TabControl; using Tellico::GUI::TabControl;
TabControl::TabControl(TQWidget* tqparent_, const char* name_/*=0*/) TabControl::TabControl(TQWidget* parent_, const char* name_/*=0*/)
: TQTabWidget(tqparent_, name_) { : TQTabWidget(parent_, name_) {
} }
TQTabBar* TabControl::tabBar() const { TQTabBar* TabControl::tabBar() const {

@ -30,8 +30,8 @@ namespace {
using Tellico::GUI::TableFieldWidget; using Tellico::GUI::TableFieldWidget;
TableFieldWidget::TableFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) TableFieldWidget::TableFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_), m_field(field_), m_row(-1), m_col(-1) { : FieldWidget(field_, parent_, name_), m_field(field_), m_row(-1), m_col(-1) {
bool ok; bool ok;
m_columns = Tellico::toUInt(field_->property(TQString::tqfromLatin1("columns")), &ok); m_columns = Tellico::toUInt(field_->property(TQString::tqfromLatin1("columns")), &ok);

@ -32,8 +32,8 @@ TQString URLFieldWidget::URLCompletion::makeCompletion(const TQString& text_) {
return KURLCompletion::makeCompletion(text_); return KURLCompletion::makeCompletion(text_);
} }
URLFieldWidget::URLFieldWidget(Data::FieldPtr field_, TQWidget* tqparent_, const char* name_/*=0*/) URLFieldWidget::URLFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const char* name_/*=0*/)
: FieldWidget(field_, tqparent_, name_), m_run(0) { : FieldWidget(field_, parent_, name_), m_run(0) {
m_requester = new KURLRequester(this); m_requester = new KURLRequester(this);
m_requester->lineEdit()->setCompletionObject(new URLCompletion()); m_requester->lineEdit()->setCompletionObject(new URLCompletion());

@ -50,8 +50,8 @@ const unsigned Tellico::Import::Importer::s_stepSize = 20;
using Tellico::ImportDialog; using Tellico::ImportDialog;
ImportDialog::ImportDialog(Import::Format format_, const KURL::List& urls_, TQWidget* tqparent_, const char* name_) ImportDialog::ImportDialog(Import::Format format_, const KURL::List& urls_, TQWidget* parent_, const char* name_)
: KDialogBase(tqparent_, name_, true /*modal*/, i18n("Import Options"), Ok|Cancel), : KDialogBase(parent_, name_, true /*modal*/, i18n("Import Options"), Ok|Cancel),
m_coll(0), m_coll(0),
m_importer(importer(format_, urls_)) { m_importer(importer(format_, urls_)) {
TQWidget* widget = new TQWidget(this); TQWidget* widget = new TQWidget(this);
@ -362,8 +362,8 @@ void ImportDialog::slotOk() {
void ImportDialog::slotUpdateAction() { void ImportDialog::slotUpdateAction() {
// distasteful hack // distasteful hack
// selectedId() is new in QT 3.2 // selectedId() is new in QT 3.2
// m_importer->slotActionChanged(dynamic_cast<TQButtonGroup*>(m_radioAppend->tqparentWidget())->selectedId()); // m_importer->slotActionChanged(dynamic_cast<TQButtonGroup*>(m_radioAppend->parentWidget())->selectedId());
TQButtonGroup* bg = static_cast<TQButtonGroup*>(m_radioAppend->tqparentWidget()); TQButtonGroup* bg = static_cast<TQButtonGroup*>(m_radioAppend->parentWidget());
m_importer->slotActionChanged(bg->id(bg->selected())); m_importer->slotActionChanged(bg->id(bg->selected()));
} }

@ -53,8 +53,8 @@ TQString ISBNValidator::cleanValue(TQString isbn) {
return isbn; return isbn;
} }
ISBNValidator::ISBNValidator(TQObject* tqparent_, const char* name_/*=0*/) ISBNValidator::ISBNValidator(TQObject* parent_, const char* name_/*=0*/)
: TQValidator(tqparent_, name_) { : TQValidator(parent_, name_) {
} }
TQValidator::State ISBNValidator::validate(TQString& input_, int& pos_) const { TQValidator::State ISBNValidator::validate(TQString& input_, int& pos_) const {

@ -16,7 +16,7 @@
using Tellico::LCCNValidator; using Tellico::LCCNValidator;
LCCNValidator::LCCNValidator(TQObject* tqparent_) : TQRegExpValidator(tqparent_) { LCCNValidator::LCCNValidator(TQObject* parent_) : TQRegExpValidator(parent_) {
TQRegExp rx(TQString::tqfromLatin1("[a-z ]{0,3}" TQRegExp rx(TQString::tqfromLatin1("[a-z ]{0,3}"
"(" "("
"\\d{2}-?\\d{1,6}" "\\d{2}-?\\d{1,6}"

@ -36,14 +36,14 @@
using Tellico::LoanDialog; using Tellico::LoanDialog;
LoanDialog::LoanDialog(const Data::EntryVec& entries_, TQWidget* tqparent_, const char* name_/*=0*/) LoanDialog::LoanDialog(const Data::EntryVec& entries_, TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(tqparent_, name_, true, i18n("Loan Dialog"), Ok|Cancel), : KDialogBase(parent_, name_, true, i18n("Loan Dialog"), Ok|Cancel),
m_mode(Add), m_borrower(0), m_entries(entries_), m_loan(0) { m_mode(Add), m_borrower(0), m_entries(entries_), m_loan(0) {
init(); init();
} }
LoanDialog::LoanDialog(Data::LoanPtr loan_, TQWidget* tqparent_, const char* name_/*=0*/) LoanDialog::LoanDialog(Data::LoanPtr loan_, TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(tqparent_, name_, true, i18n("Modify Loan"), Ok|Cancel), : KDialogBase(parent_, name_, true, i18n("Modify Loan"), Ok|Cancel),
m_mode(Modify), m_borrower(loan_->borrower()), m_loan(loan_) { m_mode(Modify), m_borrower(loan_->borrower()), m_loan(loan_) {
m_entries.append(m_loan->entry()); m_entries.append(m_loan->entry());

@ -17,8 +17,8 @@
using Tellico::LoanItem; using Tellico::LoanItem;
LoanItem::LoanItem(GUI::CountedItem* tqparent_, Tellico::Data::LoanPtr loan_) LoanItem::LoanItem(GUI::CountedItem* parent_, Tellico::Data::LoanPtr loan_)
: Tellico::EntryItem(tqparent_, loan_->entry()), m_loan(loan_) { : Tellico::EntryItem(parent_, loan_->entry()), m_loan(loan_) {
} }
void LoanItem::doubleClicked() { void LoanItem::doubleClicked() {

@ -29,7 +29,7 @@
using Tellico::LoanView; using Tellico::LoanView;
LoanView::LoanView(TQWidget* tqparent_, const char* name_) : GUI::ListView(tqparent_, name_), m_notSortedYet(true) { LoanView::LoanView(TQWidget* parent_, const char* name_) : GUI::ListView(parent_, name_), m_notSortedYet(true) {
addColumn(i18n("Borrower")); addColumn(i18n("Borrower"));
header()->setStretchEnabled(true, 0); header()->setStretchEnabled(true, 0);
setResizeMode(TQListView::NoColumn); setResizeMode(TQListView::NoColumn);

@ -97,7 +97,7 @@ namespace {
using Tellico::MainWindow; using Tellico::MainWindow;
MainWindow::MainWindow(TQWidget* tqparent_/*=0*/, const char* name_/*=0*/) : KMainWindow(tqparent_, name_), MainWindow::MainWindow(TQWidget* parent_/*=0*/, const char* name_/*=0*/) : KMainWindow(parent_, name_),
ApplicationInterface(), ApplicationInterface(),
m_updateAll(0), m_updateAll(0),
m_statusBar(0), m_statusBar(0),
@ -1592,7 +1592,7 @@ void MainWindow::slotHandleConfigChange() {
suffixes != Config::nameSuffixList() || suffixes != Config::nameSuffixList() ||
prefixes != Config::surnamePrefixList()) { prefixes != Config::surnamePrefixList()) {
// tqinvalidate all groups // tqinvalidate all groups
Data::Document::self()->collection()->tqinvalidateGroups(); Data::Document::self()->collection()->invalidateGroups();
// refreshing the title causes the group view to refresh // refreshing the title causes the group view to refresh
Controller::self()->slotRefreshField(Data::Document::self()->collection()->fieldByName(TQString::tqfromLatin1("title"))); Controller::self()->slotRefreshField(Data::Document::self()->collection()->fieldByName(TQString::tqfromLatin1("title")));
} }

@ -90,8 +90,8 @@ private:
InstalltqStatus m_status; InstalltqStatus m_status;
}; };
Dialog::Dialog(NewStuff::DataType type_, TQWidget* tqparent_) Dialog::Dialog(NewStuff::DataType type_, TQWidget* parent_)
: KDialogBase(KDialogBase::Plain, i18n("Get Hot New Stuff"), 0, (KDialogBase::ButtonCode)0, tqparent_) : KDialogBase(KDialogBase::Plain, i18n("Get Hot New Stuff"), 0, (KDialogBase::ButtonCode)0, parent_)
, m_manager(new Manager(TQT_TQOBJECT(this))) , m_manager(new Manager(TQT_TQOBJECT(this)))
, m_type(type_) , m_type(type_)
, m_timer(new TQTimer(this)) , m_timer(new TQTimer(this))

@ -42,7 +42,7 @@
using Tellico::NewStuff::Manager; using Tellico::NewStuff::Manager;
Manager::Manager(TQObject* tqparent_) : TQObject(tqparent_), m_tempFile(0) { Manager::Manager(TQObject* parent_) : TQObject(parent_), m_tempFile(0) {
m_infoList.setAutoDelete(true); m_infoList.setAutoDelete(true);
} }

@ -20,11 +20,11 @@
using Tellico::NewStuff::NewScript; using Tellico::NewStuff::NewScript;
NewScript::NewScript(Manager* manager_, TQWidget* tqparentWidget_) NewScript::NewScript(Manager* manager_, TQWidget* parentWidget_)
#if KDE_IS_VERSION(3,3,90) #if KDE_IS_VERSION(3,3,90)
: KNewStuffSecure(TQString::tqfromLatin1("tellico/data-source"), tqparentWidget_) : KNewStuffSecure(TQString::tqfromLatin1("tellico/data-source"), parentWidget_)
#else #else
: TQObject(tqparentWidget_) : TQObject(parentWidget_)
#endif #endif
, m_manager(manager_), m_success(false) { , m_manager(manager_), m_success(false) {
} }

@ -36,7 +36,7 @@ Q_OBJECT
TQ_OBJECT TQ_OBJECT
public: public:
NewScript(Manager* manager, TQWidget* tqparentWidget = 0); NewScript(Manager* manager, TQWidget* parentWidget = 0);
virtual ~NewScript() {} virtual ~NewScript() {}
const KURL& url() const { return m_url; } const KURL& url() const { return m_url; }

@ -30,8 +30,8 @@
using Tellico::NewStuff::ProviderLoader; using Tellico::NewStuff::ProviderLoader;
ProviderLoader::ProviderLoader( TQWidget *tqparentWidget ) : ProviderLoader::ProviderLoader( TQWidget *parentWidget ) :
mParentWidget( tqparentWidget ), mTryAlt(true) mParentWidget( parentWidget ), mTryAlt(true)
{ {
mProviders.setAutoDelete( true ); mProviders.setAutoDelete( true );
} }

@ -41,9 +41,9 @@ public:
/** /**
* Constructor. * Constructor.
* *
* @param tqparentWidget the tqparent widget * @param parentWidget the tqparent widget
*/ */
ProviderLoader( TQWidget *tqparentWidget ); ProviderLoader( TQWidget *parentWidget );
/** /**
* Starts asynchronously loading the list of providers of the * Starts asynchronously loading the list of providers of the

@ -49,8 +49,8 @@ namespace {
using Tellico::ReportDialog; using Tellico::ReportDialog;
// default button is going to be used as a print button, so it's separated // default button is going to be used as a print button, so it's separated
ReportDialog::ReportDialog(TQWidget* tqparent_, const char* name_/*=0*/) ReportDialog::ReportDialog(TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(tqparent_, name_, false, i18n("Collection Report"), Close, Close), : KDialogBase(parent_, name_, false, i18n("Collection Report"), Close, Close),
m_exporter(0) { m_exporter(0) {
TQWidget* mainWidget = new TQWidget(this, "ReportDialog mainWidget"); TQWidget* mainWidget = new TQWidget(this, "ReportDialog mainWidget");
setMainWidget(mainWidget); setMainWidget(mainWidget);

@ -31,7 +31,7 @@
using Tellico::StatusBar; using Tellico::StatusBar;
StatusBar* StatusBar::s_self = 0; StatusBar* StatusBar::s_self = 0;
StatusBar::StatusBar(TQWidget* tqparent_) : KStatusBar(tqparent_) { StatusBar::StatusBar(TQWidget* parent_) : KStatusBar(parent_) {
s_self = this; s_self = this;
// don't care about text and id // don't care about text and id

@ -179,7 +179,7 @@ Tellico::Data::CollPtr AlexandriaImporter::collection() {
return m_coll; return m_coll;
} }
TQWidget* AlexandriaImporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* AlexandriaImporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget) { if(m_widget) {
return m_widget; return m_widget;
} }
@ -187,7 +187,7 @@ TQWidget* AlexandriaImporter::widget(TQWidget* tqparent_, const char* name_/*=0*
m_libraryDir = TQDir::home(); m_libraryDir = TQDir::home();
m_libraryDir.setFilter(TQDir::Dirs | TQDir::Readable | TQDir::NoSymLinks); m_libraryDir.setFilter(TQDir::Dirs | TQDir::Readable | TQDir::NoSymLinks);
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(2, Qt::Horizontal, i18n("Alexandria Options"), m_widget); TQGroupBox* box = new TQGroupBox(2, Qt::Horizontal, i18n("Alexandria Options"), m_widget);

@ -260,14 +260,14 @@ TQStringList AMCImporter::parseCast(const TQString& text_) {
} else if(text_.at(pos) == '(') { } else if(text_.at(pos) == '(') {
if(nPar == 0) { if(nPar == 0) {
person = text_.mid(oldPos, pos-oldPos).stripWhiteSpace(); person = text_.mid(oldPos, pos-oldPos).stripWhiteSpace();
oldPos = pos+1; // add one to go past tqparenthesis oldPos = pos+1; // add one to go past parenthesis
} }
++nPar; ++nPar;
} else if(text_.at(pos) == ')') { } else if(text_.at(pos) == ')') {
--nPar; --nPar;
if(nPar == 0) { if(nPar == 0) {
role = text_.mid(oldPos, pos-oldPos).stripWhiteSpace(); role = text_.mid(oldPos, pos-oldPos).stripWhiteSpace();
oldPos = pos+1; // add one to go past tqparenthesis oldPos = pos+1; // add one to go past parenthesis
} }
} }
} }

@ -329,12 +329,12 @@ Tellico::Data::CollPtr AudioFileImporter::collection() {
#endif #endif
} }
TQWidget* AudioFileImporter::widget(TQWidget* tqparent_, const char* name_) { TQWidget* AudioFileImporter::widget(TQWidget* parent_, const char* name_) {
if(m_widget) { if(m_widget) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQVGroupBox* box = new TQVGroupBox(i18n("Audio File Options"), m_widget); TQVGroupBox* box = new TQVGroupBox(i18n("Audio File Options"), m_widget);

@ -190,12 +190,12 @@ bool BibtexExporter::exec() {
return FileHandler::writeTextURL(url(), text, options() & ExportUTF8, options() & Export::ExportForce); return FileHandler::writeTextURL(url(), text, options() & ExportUTF8, options() & Export::ExportForce);
} }
TQWidget* BibtexExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* BibtexExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("Bibtex Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("Bibtex Options"), m_widget);

@ -278,12 +278,12 @@ void BibtexImporter::slotCancel() {
m_cancelled = true; m_cancelled = true;
} }
TQWidget* BibtexImporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* BibtexImporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget) { if(m_widget) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQButtonGroup* box = new TQVButtonGroup(i18n("Bibtex Options"), m_widget); TQButtonGroup* box = new TQVButtonGroup(i18n("Bibtex Options"), m_widget);

@ -99,7 +99,7 @@ bool BibtexmlExporter::exec() {
StringSet usedKeys; StringSet usedKeys;
TQString type, key, newKey, value, elemName, parElemName; TQString type, key, newKey, value, elemName, parElemName;
TQDomElement btElem, entryElem, tqparentElem, fieldElem; TQDomElement btElem, entryElem, parentElem, fieldElem;
for(Data::EntryVec::ConstIterator entryIt = entries().begin(); entryIt != entries().end(); ++entryIt) { for(Data::EntryVec::ConstIterator entryIt = entries().begin(); entryIt != entries().end(); ++entryIt) {
key = entryIt->field(keyField); key = entryIt->field(keyField);
if(key.isEmpty()) { if(key.isEmpty()) {
@ -157,15 +157,15 @@ bool BibtexmlExporter::exec() {
elemName = TQString::tqfromLatin1("keyword"); elemName = TQString::tqfromLatin1("keyword");
} }
tqparentElem = dom.createElement(parElemName); parentElem = dom.createElement(parElemName);
const TQStringList values = entryIt->fields(field->name(), false); const TQStringList values = entryIt->fields(field->name(), false);
for(TQStringList::ConstIterator it = values.begin(); it != values.end(); ++it) { for(TQStringList::ConstIterator it = values.begin(); it != values.end(); ++it) {
fieldElem = dom.createElement(elemName); fieldElem = dom.createElement(elemName);
fieldElem.appendChild(dom.createTextNode(*it)); fieldElem.appendChild(dom.createTextNode(*it));
tqparentElem.appendChild(fieldElem); parentElem.appendChild(fieldElem);
} }
if(tqparentElem.hasChildNodes()) { if(parentElem.hasChildNodes()) {
entryElem.appendChild(tqparentElem); entryElem.appendChild(parentElem);
} }
} else { } else {
fieldElem = dom.createElement(elemName); fieldElem = dom.createElement(elemName);

@ -254,7 +254,7 @@ extern "C" {
* First, we might need a prototype for strdup() (because the zzcr_ast * First, we might need a prototype for strdup() (because the zzcr_ast
* macro uses it, and that macro is used in pccts/ast.c -- which I don't * macro uses it, and that macro is used in pccts/ast.c -- which I don't
* want to modify if I can help it, because it's someone else's code). * want to modify if I can help it, because it's someone else's code).
* This is to accomodate AIX, where including <string.h> aptqparently doesn't * This is to accomodate AIX, where including <string.h> apparently doesn't
* declare strdup() (reported by Reiner Schlotte * declare strdup() (reported by Reiner Schlotte
* <schlotte@geo.palmod.uni-bremen.de>), and compiling bibtex.c (which * <schlotte@geo.palmod.uni-bremen.de>), and compiling bibtex.c (which
* includes pccts/ast.c) crashes because of this (yes, yes, I know it * includes pccts/ast.c) crashes because of this (yes, yes, I know it

@ -164,7 +164,7 @@ finish_parse (int **err_counts)
@RETURNS : false if there were serious errors in the recently-parsed input @RETURNS : false if there were serious errors in the recently-parsed input
true otherwise (no errors or just warnings) true otherwise (no errors or just warnings)
@DESCRIPTION: Gets the "error status" bitmap relative to a saved set of @DESCRIPTION: Gets the "error status" bitmap relative to a saved set of
error counts and tqmasks of non-serious errors. error counts and masks of non-serious errors.
@GLOBALS : @GLOBALS :
@CALLS : @CALLS :
@CALLERS : @CALLERS :
@ -178,7 +178,7 @@ parse_status (int *saved_counts)
/* /*
* This bit-twiddling fetches the error status (which has a bit * This bit-twiddling fetches the error status (which has a bit
* for each error class), tqmasks off the bits for trivial errors * for each error class), masks off the bits for trivial errors
* to get "true" if there were any serious errors, and then * to get "true" if there were any serious errors, and then
* returns the opposite of that. * returns the opposite of that.
*/ */

@ -107,7 +107,7 @@ static int JunkCount; /* non-whitespace chars at toplevel */
* brace depth within a string; we can only end the current string * brace depth within a string; we can only end the current string
* when this is zero * when this is zero
* ParenDepth: * ParenDepth:
* tqparenthesis depth within a string; needed for @comment entries * parenthesis depth within a string; needed for @comment entries
* that are paren-delimited (because the comment in that case is * that are paren-delimited (because the comment in that case is
* a paren-delimited string) * a paren-delimited string)
* StringOpener: * StringOpener:
@ -117,7 +117,7 @@ static int JunkCount; /* non-whitespace chars at toplevel */
* StringStart: * StringStart:
* line on which current string started; if we detect an aptqparent * line on which current string started; if we detect an aptqparent
* runaway, this is used to report where the runaway started * runaway, this is used to report where the runaway started
* AptqparentRunaway: * ApparentRunaway:
* flags if we have already detected (and warned) that the current * flags if we have already detected (and warned) that the current
* string appears to be a runaway, so that we don't warn again * string appears to be a runaway, so that we don't warn again
* (and again and again and again) * (and again and again and again)
@ -130,9 +130,9 @@ static int JunkCount; /* non-whitespace chars at toplevel */
*/ */
static char StringOpener = '\0'; /* '{' or '"' */ static char StringOpener = '\0'; /* '{' or '"' */
static int BraceDepth; /* depth of brace-nesting */ static int BraceDepth; /* depth of brace-nesting */
static int ParenDepth; /* depth of tqparenthesis-nesting */ static int ParenDepth; /* depth of parenthesis-nesting */
static int StringStart = -1; /* start line of current string */ static int StringStart = -1; /* start line of current string */
static int AptqparentRunaway; /* current string looks like runaway */ static int ApparentRunaway; /* current string looks like runaway */
static int QuoteWarned; /* already warned about " in string? */ static int QuoteWarned; /* already warned about " in string? */
@ -590,7 +590,7 @@ void start_string (char start_char)
BraceDepth = 0; BraceDepth = 0;
ParenDepth = 0; ParenDepth = 0;
StringStart = zzline; StringStart = zzline;
AptqparentRunaway = 0; ApparentRunaway = 0;
QuoteWarned = 0; QuoteWarned = 0;
if (start_char == '{') if (start_char == '{')
open_brace (); open_brace ();
@ -598,7 +598,7 @@ void start_string (char start_char)
ParenDepth++; ParenDepth++;
if (start_char == '"' && EntryState == in_comment) if (start_char == '"' && EntryState == in_comment)
{ {
lexical_error ("comment entries must be delimited by either braces or tqparentheses"); lexical_error ("comment entries must be delimited by either braces or parentheses");
EntryState = toplevel; EntryState = toplevel;
zzmode (START); zzmode (START);
return; return;
@ -878,7 +878,7 @@ void check_runaway_string (void)
} }
if (!AptqparentRunaway) /* haven't already warned about it */ if (!ApparentRunaway) /* haven't already warned about it */
{ {
enum { none, entry, field, giveup } guess; enum { none, entry, field, giveup } guess;
@ -930,7 +930,7 @@ void check_runaway_string (void)
{ {
lexical_warning ("possible runaway string started at line %d", lexical_warning ("possible runaway string started at line %d",
StringStart); StringStart);
AptqparentRunaway = 1; ApparentRunaway = 1;
} }
} }

@ -98,12 +98,12 @@ bool CSVExporter::exec() {
return FileHandler::writeTextURL(url(), text, options() & ExportUTF8, options() & Export::ExportForce); return FileHandler::writeTextURL(url(), text, options() & ExportUTF8, options() & Export::ExportForce);
} }
TQWidget* CSVExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* CSVExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("CSV Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("CSV Options"), m_widget);

@ -210,12 +210,12 @@ Tellico::Data::CollPtr CSVImporter::collection() {
return m_coll; return m_coll;
} }
TQWidget* CSVImporter::widget(TQWidget* tqparent_, const char* name_) { TQWidget* CSVImporter::widget(TQWidget* parent_, const char* name_) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* group = new TQGroupBox(1, Qt::Horizontal, i18n("CSV Options"), m_widget); TQGroupBox* group = new TQGroupBox(1, Qt::Horizontal, i18n("CSV Options"), m_widget);

@ -180,12 +180,12 @@ Tellico::Data::CollPtr FileListingImporter::collection() {
return m_coll; return m_coll;
} }
TQWidget* FileListingImporter::widget(TQWidget* tqparent_, const char* name_) { TQWidget* FileListingImporter::widget(TQWidget* parent_, const char* name_) {
if(m_widget) { if(m_widget) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQVGroupBox* box = new TQVGroupBox(i18n("File Listing Options"), m_widget); TQVGroupBox* box = new TQVGroupBox(i18n("File Listing Options"), m_widget);

@ -479,11 +479,11 @@ void FreeDBImporter::readCDText(const TQCString& drive_) {
} }
#undef SETFIELD #undef SETFIELD
TQWidget* FreeDBImporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* FreeDBImporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget) { if(m_widget) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* bigbox = new TQGroupBox(1, Qt::Horizontal, i18n("Audio CD Options"), m_widget); TQGroupBox* bigbox = new TQGroupBox(1, Qt::Horizontal, i18n("Audio CD Options"), m_widget);

@ -149,7 +149,7 @@ class BasicTellicoDOM:
else: else:
field = key field = key
tqparentNode = self.__doc.createElement(field + 's') parentNode = self.__doc.createElement(field + 's')
for value in values: for value in values:
if len(value) == 0: continue if len(value) == 0: continue
@ -173,9 +173,9 @@ class BasicTellicoDOM:
else: else:
node.appendChild(self.__doc.createTextNode(value.strip())) node.appendChild(self.__doc.createTextNode(value.strip()))
if node.hasChildNodes(): tqparentNode.appendChild(node) if node.hasChildNodes(): parentNode.appendChild(node)
if tqparentNode.hasChildNodes(): entryNode.appendChild(tqparentNode) if parentNode.hasChildNodes(): entryNode.appendChild(parentNode)
self.__collection.appendChild(entryNode) self.__collection.appendChild(entryNode)

@ -454,12 +454,12 @@ void HTMLExporter::writeImages(Data::CollPtr coll_) {
} }
} }
TQWidget* HTMLExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* HTMLExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("HTML Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("HTML Options"), m_widget);

@ -165,12 +165,12 @@ TQString ONIXExporter::text() {
return m_handler->applyStylesheet(output.toString()); return m_handler->applyStylesheet(output.toString());
} }
TQWidget* ONIXExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* ONIXExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("ONIX Archive Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("ONIX Archive Options"), m_widget);

@ -199,12 +199,12 @@ bool PilotDBExporter::exec() {
return FileHandler::writeDataURL(url(), pdb.data(), options() & Export::ExportForce); return FileHandler::writeDataURL(url(), pdb.data(), options() & Export::ExportForce);
} }
TQWidget* PilotDBExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* PilotDBExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("PilotDB Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("PilotDB Options"), m_widget);

@ -214,7 +214,7 @@ void TellicoImporter::loadXMLData(const TQByteArray& data_, bool loadImages_) {
// removeChild only works for immediate tqchildren // removeChild only works for immediate tqchildren
// remove _default field // remove _default field
if(addFields) { if(addFields) {
fieldelems.item(0).tqparentNode().removeChild(fieldelems.item(0)); fieldelems.item(0).parentNode().removeChild(fieldelems.item(0));
} }
} }

@ -114,7 +114,7 @@ TQString TellicoXMLExporter::exportXMLString() const {
return exportXML().toString(); return exportXML().toString();
} }
void TellicoXMLExporter::exportCollectionXML(TQDomDocument& dom_, TQDomElement& tqparent_, bool format_) const { void TellicoXMLExporter::exportCollectionXML(TQDomDocument& dom_, TQDomElement& parent_, bool format_) const {
Data::CollPtr coll = collection(); Data::CollPtr coll = collection();
if(!coll) { if(!coll) {
kdWarning() << "TellicoXMLExporter::exportCollectionXML() - no collection pointer!" << endl; kdWarning() << "TellicoXMLExporter::exportCollectionXML() - no collection pointer!" << endl;
@ -173,7 +173,7 @@ void TellicoXMLExporter::exportCollectionXML(TQDomDocument& dom_, TQDomElement&
exportGroupXML(dom_, collElem); exportGroupXML(dom_, collElem);
} }
tqparent_.appendChild(collElem); parent_.appendChild(collElem);
// the borrowers and filters are in the tellico object, not the collection // the borrowers and filters are in the tellico object, not the collection
if(options() & Export::ExportComplete) { if(options() & Export::ExportComplete) {
@ -183,7 +183,7 @@ void TellicoXMLExporter::exportCollectionXML(TQDomDocument& dom_, TQDomElement&
exportBorrowerXML(dom_, bElem, bIt); exportBorrowerXML(dom_, bElem, bIt);
} }
if(bElem.hasChildNodes()) { if(bElem.hasChildNodes()) {
tqparent_.appendChild(bElem); parent_.appendChild(bElem);
} }
TQDomElement fElem = dom_.createElement(TQString::tqfromLatin1("filters")); TQDomElement fElem = dom_.createElement(TQString::tqfromLatin1("filters"));
@ -192,12 +192,12 @@ void TellicoXMLExporter::exportCollectionXML(TQDomDocument& dom_, TQDomElement&
exportFilterXML(dom_, fElem, fIt); exportFilterXML(dom_, fElem, fIt);
} }
if(fElem.hasChildNodes()) { if(fElem.hasChildNodes()) {
tqparent_.appendChild(fElem); parent_.appendChild(fElem);
} }
} }
} }
void TellicoXMLExporter::exportFieldXML(TQDomDocument& dom_, TQDomElement& tqparent_, Data::FieldPtr field_) const { void TellicoXMLExporter::exportFieldXML(TQDomDocument& dom_, TQDomElement& parent_, Data::FieldPtr field_) const {
TQDomElement elem = dom_.createElement(TQString::tqfromLatin1("field")); TQDomElement elem = dom_.createElement(TQString::tqfromLatin1("field"));
elem.setAttribute(TQString::tqfromLatin1("name"), field_->name()); elem.setAttribute(TQString::tqfromLatin1("name"), field_->name());
@ -227,10 +227,10 @@ void TellicoXMLExporter::exportFieldXML(TQDomDocument& dom_, TQDomElement& tqpar
elem.appendChild(e); elem.appendChild(e);
} }
tqparent_.appendChild(elem); parent_.appendChild(elem);
} }
void TellicoXMLExporter::exportEntryXML(TQDomDocument& dom_, TQDomElement& tqparent_, Data::EntryPtr entry_, bool format_) const { void TellicoXMLExporter::exportEntryXML(TQDomDocument& dom_, TQDomElement& parent_, Data::EntryPtr entry_, bool format_) const {
TQDomElement entryElem = dom_.createElement(TQString::tqfromLatin1("entry")); TQDomElement entryElem = dom_.createElement(TQString::tqfromLatin1("entry"));
entryElem.setAttribute(TQString::tqfromLatin1("id"), entry_->id()); entryElem.setAttribute(TQString::tqfromLatin1("id"), entry_->id());
@ -333,10 +333,10 @@ void TellicoXMLExporter::exportEntryXML(TQDomDocument& dom_, TQDomElement& tqpar
} }
} // end field loop } // end field loop
tqparent_.appendChild(entryElem); parent_.appendChild(entryElem);
} }
void TellicoXMLExporter::exportImageXML(TQDomDocument& dom_, TQDomElement& tqparent_, const TQString& id_) const { void TellicoXMLExporter::exportImageXML(TQDomDocument& dom_, TQDomElement& parent_, const TQString& id_) const {
if(id_.isEmpty()) { if(id_.isEmpty()) {
myDebug() << "TellicoXMLExporter::exportImageXML() - empty image!" << endl; myDebug() << "TellicoXMLExporter::exportImageXML() - empty image!" << endl;
return; return;
@ -374,10 +374,10 @@ void TellicoXMLExporter::exportImageXML(TQDomDocument& dom_, TQDomElement& tqpar
imgElem.setAttribute(TQString::tqfromLatin1("link"), TQString::tqfromLatin1("true")); imgElem.setAttribute(TQString::tqfromLatin1("link"), TQString::tqfromLatin1("true"));
} }
} }
tqparent_.appendChild(imgElem); parent_.appendChild(imgElem);
} }
void TellicoXMLExporter::exportGroupXML(TQDomDocument& dom_, TQDomElement& tqparent_) const { void TellicoXMLExporter::exportGroupXML(TQDomDocument& dom_, TQDomElement& parent_) const {
Data::EntryVec vec = entries(); // need a copy for ::tqcontains(); Data::EntryVec vec = entries(); // need a copy for ::tqcontains();
bool exportAll = collection()->entries().count() == vec.count(); bool exportAll = collection()->entries().count() == vec.count();
// iterate over each group, which are the first tqchildren // iterate over each group, which are the first tqchildren
@ -398,12 +398,12 @@ void TellicoXMLExporter::exportGroupXML(TQDomDocument& dom_, TQDomElement& tqpar
groupElem.appendChild(entryRefElem); groupElem.appendChild(entryRefElem);
} }
if(groupElem.hasChildNodes()) { if(groupElem.hasChildNodes()) {
tqparent_.appendChild(groupElem); parent_.appendChild(groupElem);
} }
} }
} }
void TellicoXMLExporter::exportFilterXML(TQDomDocument& dom_, TQDomElement& tqparent_, FilterPtr filter_) const { void TellicoXMLExporter::exportFilterXML(TQDomDocument& dom_, TQDomElement& parent_, FilterPtr filter_) const {
TQDomElement filterElem = dom_.createElement(TQString::tqfromLatin1("filter")); TQDomElement filterElem = dom_.createElement(TQString::tqfromLatin1("filter"));
filterElem.setAttribute(TQString::tqfromLatin1("name"), filter_->name()); filterElem.setAttribute(TQString::tqfromLatin1("name"), filter_->name());
@ -439,17 +439,17 @@ void TellicoXMLExporter::exportFilterXML(TQDomDocument& dom_, TQDomElement& tqpa
filterElem.appendChild(ruleElem); filterElem.appendChild(ruleElem);
} }
tqparent_.appendChild(filterElem); parent_.appendChild(filterElem);
} }
void TellicoXMLExporter::exportBorrowerXML(TQDomDocument& dom_, TQDomElement& tqparent_, void TellicoXMLExporter::exportBorrowerXML(TQDomDocument& dom_, TQDomElement& parent_,
Data::BorrowerPtr borrower_) const { Data::BorrowerPtr borrower_) const {
if(borrower_->isEmpty()) { if(borrower_->isEmpty()) {
return; return;
} }
TQDomElement bElem = dom_.createElement(TQString::tqfromLatin1("borrower")); TQDomElement bElem = dom_.createElement(TQString::tqfromLatin1("borrower"));
tqparent_.appendChild(bElem); parent_.appendChild(bElem);
bElem.setAttribute(TQString::tqfromLatin1("name"), borrower_->name()); bElem.setAttribute(TQString::tqfromLatin1("name"), borrower_->name());
bElem.setAttribute(TQString::tqfromLatin1("uid"), borrower_->uid()); bElem.setAttribute(TQString::tqfromLatin1("uid"), borrower_->uid());
@ -471,12 +471,12 @@ void TellicoXMLExporter::exportBorrowerXML(TQDomDocument& dom_, TQDomElement& tq
} }
} }
TQWidget* TellicoXMLExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* TellicoXMLExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("Tellico XML Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("Tellico XML Options"), m_widget);

@ -58,12 +58,12 @@ bool XSLTExporter::exec() {
options() & ExportUTF8, options() & Export::ExportForce); options() & ExportUTF8, options() & Export::ExportForce);
} }
TQWidget* XSLTExporter::widget(TQWidget* tqparent_, const char* name_/*=0*/) { TQWidget* XSLTExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(tqparent_)) { if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget; return m_widget;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* group = new TQGroupBox(1, Qt::Horizontal, i18n("XSLT Options"), m_widget); TQGroupBox* group = new TQGroupBox(1, Qt::Horizontal, i18n("XSLT Options"), m_widget);

@ -86,13 +86,13 @@ Tellico::Data::CollPtr XSLTImporter::collection() {
return m_coll; return m_coll;
} }
TQWidget* XSLTImporter::widget(TQWidget* tqparent_, const char* name_) { TQWidget* XSLTImporter::widget(TQWidget* parent_, const char* name_) {
// if the url has already been set, then there's no widget // if the url has already been set, then there's no widget
if(!m_xsltURL.isEmpty()) { if(!m_xsltURL.isEmpty()) {
return 0; return 0;
} }
m_widget = new TQWidget(tqparent_, name_); m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget); TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* box = new TQGroupBox(1, Qt::Vertical, i18n("XSLT Options"), m_widget); TQGroupBox* box = new TQGroupBox(1, Qt::Vertical, i18n("XSLT Options"), m_widget);

@ -18,8 +18,8 @@
using Tellico::UPCValidator; using Tellico::UPCValidator;
UPCValidator::UPCValidator(TQObject* tqparent_, const char* name_/*=0*/) UPCValidator::UPCValidator(TQObject* parent_, const char* name_/*=0*/)
: TQValidator(tqparent_, name_), m_checkISBN(false) { : TQValidator(parent_, name_), m_checkISBN(false) {
} }
TQValidator::State UPCValidator::validate(TQString& input_, int& pos_) const { TQValidator::State UPCValidator::validate(TQString& input_, int& pos_) const {

@ -24,7 +24,7 @@
using Tellico::ViewStack; using Tellico::ViewStack;
ViewStack::ViewStack(TQWidget* tqparent_, const char* name_/*=0*/) : TQWidgetStack(tqparent_, name_), ViewStack::ViewStack(TQWidget* parent_, const char* name_/*=0*/) : TQWidgetStack(parent_, name_),
m_entryView(new EntryView(this)), m_iconView(new EntryIconView(this)) { m_entryView(new EntryView(this)), m_iconView(new EntryIconView(this)) {
TQWhatsThis::add(m_entryView->view(), i18n("<qt>The <i>Entry View</i> shows a formatted view of the entry's " TQWhatsThis::add(m_entryView->view(), i18n("<qt>The <i>Entry View</i> shows a formatted view of the entry's "
"contents.</qt>")); "contents.</qt>"));

Loading…
Cancel
Save