mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 07:16:48 +00:00
72 lines
1.2 KiB
C++
72 lines
1.2 KiB
C++
|
/**
|
||
|
* \file QNote.C
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Juergen Spitzmueller
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "ControlNote.h"
|
||
|
#include "qt_helpers.h"
|
||
|
#include "insets/insetnote.h"
|
||
|
|
||
|
#include <qradiobutton.h>
|
||
|
#include <qpushbutton.h>
|
||
|
|
||
|
#include "QNoteDialog.h"
|
||
|
#include "QNote.h"
|
||
|
#include "Qt2BC.h"
|
||
|
|
||
|
|
||
|
typedef QController<ControlNote, QView<QNoteDialog> > base_class;
|
||
|
|
||
|
|
||
|
QNote::QNote(Dialog & parent)
|
||
|
: base_class(parent, _("LyX: Annotation Settings"))
|
||
|
{}
|
||
|
|
||
|
|
||
|
void QNote::build_dialog()
|
||
|
{
|
||
|
dialog_.reset(new QNoteDialog(this));
|
||
|
|
||
|
bcview().setOK(dialog_->okPB);
|
||
|
bcview().setCancel(dialog_->closePB);
|
||
|
}
|
||
|
|
||
|
|
||
|
void QNote::update_contents()
|
||
|
{
|
||
|
QRadioButton * rb = 0;
|
||
|
string type(controller().params().type);
|
||
|
|
||
|
if (type == "Note")
|
||
|
rb = dialog_->noteRB;
|
||
|
else if (type == "Comment")
|
||
|
rb = dialog_->commentRB;
|
||
|
else if (type == "Greyedout")
|
||
|
rb = dialog_->greyedoutRB;
|
||
|
|
||
|
rb->setChecked(true);
|
||
|
}
|
||
|
|
||
|
|
||
|
void QNote::apply()
|
||
|
{
|
||
|
string type;
|
||
|
|
||
|
if (dialog_->greyedoutRB->isChecked())
|
||
|
type = "Greyedout";
|
||
|
else if (dialog_->commentRB->isChecked())
|
||
|
type = "Comment";
|
||
|
else
|
||
|
type = "Note";
|
||
|
|
||
|
controller().params().type = type;
|
||
|
}
|
||
|
|