mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
71 lines
2 KiB
C++
71 lines
2 KiB
C++
/**
|
|
* test_highlighter.cpp
|
|
*
|
|
* Copyright (C) 2004 Zack Rusin <zack@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA
|
|
*/
|
|
#include "highlighter.h"
|
|
#include "test_highlighter.h"
|
|
#include "moc_test_highlighter.cpp"
|
|
#include "filter_p.h"
|
|
|
|
#include <kapplication.h>
|
|
#include <kdebug.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <QTextEdit>
|
|
#include <QAction>
|
|
#include <QMenu>
|
|
#include <QtGui/qevent.h>
|
|
|
|
TestSpell::TestSpell()
|
|
: QTextEdit()
|
|
{
|
|
hl = new Sonnet::Highlighter( this );
|
|
}
|
|
|
|
void TestSpell::contextMenuEvent(QContextMenuEvent *e)
|
|
{
|
|
kDebug()<<"TestSpell::contextMenuEvent\n";
|
|
QMenu *popup = createStandardContextMenu();
|
|
QMenu *subMenu = new QMenu( popup );
|
|
subMenu->setTitle( "Text highlighting" );
|
|
connect( subMenu, SIGNAL(triggered(QAction*)),this, SLOT(slotActivate()) );
|
|
QAction *action = new QAction( "active or not", popup );
|
|
popup->addSeparator();
|
|
popup->addMenu( subMenu );
|
|
subMenu->addAction(action);
|
|
popup->exec(e->globalPos());
|
|
delete popup;
|
|
}
|
|
|
|
void TestSpell::slotActivate()
|
|
{
|
|
kDebug()<<"Activate or not highlight :";
|
|
hl->setActive(!hl->isActive());
|
|
}
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
KCmdLineArgs::init( argc, argv, "SonnetTest", 0, ki18n("SonnetTest"), 0 );
|
|
|
|
KApplication app;
|
|
|
|
QTextEdit *test = new TestSpell();
|
|
test->show();
|
|
|
|
return app.exec();
|
|
}
|