1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/* This file is part of the KDE project
* Copyright (C) 2011 Smit Patel <smitpatel24@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "InsertBibliographyDialog.h"
#include <ToCBibGeneratorInfo.h>
#include <BibliographyGenerator.h>
#include <KoParagraphStyle.h>
#include <QMessageBox>
InsertBibliographyDialog::InsertBibliographyDialog(KoTextEditor *editor, QWidget *parent) :
QDialog(parent),
m_editor(editor),
m_bibInfo(new KoBibliographyInfo)
{
dialog.setupUi(this);
connect(dialog.bibTypes,SIGNAL(currentTextChanged(QString)),this,SLOT(updateFields()));
connect(dialog.buttonBox,SIGNAL(accepted()),this,SLOT(insert()));
connect(dialog.add,SIGNAL(clicked()),this,SLOT(addField()));
connect(dialog.remove,SIGNAL(clicked()),this,SLOT(removeField()));
/* To do : handle tab stops
*/
//connect(dialog.addTabStop,SIGNAL(clicked()),this,SLOT(insertTabStop()));
//connect(dialog.removeTabStop,SIGNAL(clicked()),this,SLOT(removeTabStop()));
setDefaultIndexEntries();
}
void InsertBibliographyDialog::insert()
{
m_editor->insertBibliography();
m_editor->movePosition(QTextCursor::Left);
KoBibliographyInfo *bibInfo = m_editor->block().blockFormat().property(KoParagraphStyle::BibliographyData).value<KoBibliographyInfo*>();
QTextDocument *bibDocument = m_editor->block().blockFormat().property(KoParagraphStyle::GeneratedDocument).value<QTextDocument*>();
m_editor->movePosition(QTextCursor::Right);
bibInfo->setEntryTemplates(m_bibInfo->m_entryTemplate);
bibInfo->m_indexTitleTemplate.text = dialog.title->text();
new BibliographyGenerator(bibDocument, m_editor->block(), bibInfo);
}
void InsertBibliographyDialog::updateFields()
{
dialog.availableFields->clear();
dialog.addedFields->clear();
QString bibType(dialog.bibTypes->currentItem()->text().remove(" ").toLower());
QSet<QString> addedFields;
foreach(IndexEntry *entry,m_bibInfo->m_entryTemplate[bibType].indexEntries) {
if (entry->name == IndexEntry::BIBLIOGRAPHY) {
IndexEntryBibliography *bibEntry = static_cast<IndexEntryBibliography *>(entry);
new QListWidgetItem(bibEntry->dataField,dialog.addedFields);
addedFields.insert(bibEntry->dataField);
}
}
QSet<QString> availableFields = QSet<QString>::fromList(KoBibliographyInfo::bibDataFields) - addedFields;
foreach (QString field, availableFields) {
new QListWidgetItem(field,dialog.availableFields);
}
dialog.availableFields->sortItems();
}
void InsertBibliographyDialog::addField()
{
int row = dialog.availableFields->row(dialog.availableFields->currentItem());
if (row != -1) {
QString newDataField = dialog.availableFields->takeItem(row)->text();
new QListWidgetItem(newDataField,dialog.addedFields);
QString bibType(dialog.bibTypes->currentItem()->text().remove(" ").toLower());
//creating IndexEntries
IndexEntryBibliography *newEntry = new IndexEntryBibliography(QString());
newEntry->dataField = newDataField;
IndexEntrySpan *span = new IndexEntrySpan(QString());
if (dialog.addedFields->count() == 1) {
span->text = ":";
}
else span->text = ",";
m_bibInfo->m_entryTemplate[bibType].indexEntries.append(newEntry);
m_bibInfo->m_entryTemplate[bibType].indexEntries.append(span);
}
}
void InsertBibliographyDialog::removeField()
{
int row = dialog.addedFields->row(dialog.addedFields->currentItem());
if (row != -1) {
new QListWidgetItem(dialog.addedFields->takeItem(row)->text(),dialog.availableFields);
dialog.availableFields->sortItems();
QString bibType(dialog.bibTypes->currentItem()->text().remove(" ").toLower());
//Removing IndexEntries
m_bibInfo->m_entryTemplate[bibType].indexEntries.removeAt(2*row); //to remove IndexEntry
m_bibInfo->m_entryTemplate[bibType].indexEntries.removeAt(2*row); //to remove span text
}
}
void InsertBibliographyDialog::insertTabStop()
{
/*QListWidgetItem *tabStopItem = new QListWidgetItem(QString("Tab stop"),dialog.availableFields);
IndexEntryTabStop *tabStop = new IndexEntryTabStop(QString());*/
}
void InsertBibliographyDialog::removeTabStop()
{
/*int row = dialog.addedFields->row(dialog.addedFields->currentItem());
if (row != -1 && dialog.addedFields->takeItem(row)->text() == "Tab stop") {
dialog.addedFields->removeItemWidget(dialog.addedFields->takeItem(row));
}*/
}
void InsertBibliographyDialog::setDefaultIndexEntries()
{
dialog.addedFields->clear();
dialog.availableFields->clear();
foreach (QString bibType, KoBibliographyInfo::bibTypes) {
BibliographyEntryTemplate bibEntryTemplate;
//Now creating default IndexEntries for all BibliographyEntryTemplates
IndexEntryBibliography *identifier = new IndexEntryBibliography(QString());
IndexEntryBibliography *author = new IndexEntryBibliography(QString());
IndexEntryBibliography *title = new IndexEntryBibliography(QString());
IndexEntryBibliography *year = new IndexEntryBibliography(QString());
IndexEntrySpan *firstSpan = new IndexEntrySpan(QString());
IndexEntrySpan *otherSpan = new IndexEntrySpan(QString());
identifier->dataField = "identifier";
author->dataField = "author";
title->dataField = "title";
year->dataField = "year";
firstSpan->text = ":";
otherSpan->text = ",";
bibEntryTemplate.bibliographyType = bibType;
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(identifier));
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(firstSpan));
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(author));
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(otherSpan));
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(title));
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(otherSpan));
bibEntryTemplate.indexEntries.append(static_cast<IndexEntry *>(year));
m_bibInfo->m_entryTemplate[bibType] = bibEntryTemplate;
}
dialog.bibTypes->setCurrentRow(0,QItemSelectionModel::Select);
}
|