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
|
/*
* noteeditor.cpp
*
* (c) 2002-2004,2009 by Jeremy Bowman <jmbowman@alum.mit.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
/** @file noteeditor.cpp
* Source file for NoteEditor
*/
#include <QFontMetrics>
#include <QLayout>
#include <QSettings>
#include <QTextEdit>
#include "noteeditor.h"
/**
* Constructor.
*
* @param colName Name of the column this note belongs to
* @param readOnly True if the note is only being displayed, not edited
* @param parent This dialog's parent widget
*/
NoteEditor::NoteEditor(const QString &colName, bool readOnly, QWidget *parent)
: PBDialog(colName, parent)
{
textBox = new QTextEdit(this);
vbox->addWidget(textBox);
textBox->setAcceptRichText(false);
textBox->setReadOnly(readOnly);
QSettings settings;
if (!settings.value("General/NoteWrap", true).toBool()) {
textBox->setLineWrapMode(QTextEdit::NoWrap);
}
else {
textBox->setLineWrapMode(QTextEdit::WidgetWidth);
if (settings.value("General/WrapAnywhere", false).toBool()) {
textBox->setWordWrapMode(QTextOption::WrapAnywhere);
}
}
// use scalable tab widths that match earlier PortaBase versions
QFontMetrics metrics(textBox->currentFont());
textBox->setTabStopWidth(metrics.width('x') * 8);
finishLayout(true, !readOnly, 600, 400);
textBox->setFocus();
}
/**
* Get the current note content from the edit box.
*
* @return The current note text
*/
QString NoteEditor::content()
{
return textBox->toPlainText();
}
/**
* Set the note content to display in the edit box.
*
* @param text The new note text
*/
void NoteEditor::setContent(const QString &text)
{
textBox->setPlainText(text);
}
|