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
|
/*
This file is part of the KDevelop Okteta module, part of the KDE project.
Copyright 2010 Friedrich W. H. Kossebau <kossebau@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) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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, see <http://www.gnu.org/licenses/>.
*/
#include "oktetawidget.h"
// plugin
#include "oktetadocument.h"
#include "oktetaplugin.h"
// Okteta Kasten
#include <bytearrayview.h>
#include <bytearrayrawfilesynchronizerfactory.h>
#include <overwriteonlycontroller.h>
#include <overwritemodecontroller.h>
#include <gotooffsetcontroller.h>
#include <selectrangecontroller.h>
#include <searchcontroller.h>
#include <replacecontroller.h>
#include <bookmarkscontroller.h>
#include <printcontroller.h>
#include <viewconfigcontroller.h>
#include <viewmodecontroller.h>
#include <viewstatuscontroller.h>
// Kasten
#include <readonlycontroller.h>
// #include <document/readonly/readonlybarcontroller.h>
// #include <io/synchronize/synchronizecontroller.h>
#include <clipboardcontroller.h>
#include <insertcontroller.h>
#include <copyascontroller.h>
#include <exportcontroller.h>
#include <versioncontroller.h>
#include <zoomcontroller.h>
#include <zoombarcontroller.h>
#include <selectcontroller.h>
// KDevelop
#include <sublime/view.h>
// KDE
#include <KAction>
#include <KStandardAction>
#include <KActionCollection>
// Qt
#include <QtGui/QVBoxLayout>
#include <kdebug.h>
namespace KDevelop
{
OktetaWidget::OktetaWidget( QWidget* parent, Kasten::ByteArrayView* byteArrayView, OktetaPlugin* plugin )
: QWidget( parent ),
KXMLGUIClient(),
mByteArrayView( byteArrayView )
{
setComponentData( plugin->componentData() );
setXMLFile( "kdevokteta.rc" );
setupActions();
QVBoxLayout* layout = new QVBoxLayout( this );
layout->setMargin( 0 );
QWidget* widget = mByteArrayView->widget();
layout->addWidget( widget );
setFocusProxy( widget );
}
void OktetaWidget::setupActions()
{
mControllers.append( new Kasten::VersionController(this) );
mControllers.append( new Kasten::ReadOnlyController(this) );
// TODO: save_as
// mControllers.append( new ExportController(mProgram->viewManager(),mProgram->documentManager(),this) );
mControllers.append( new Kasten::ZoomController(this) );
mControllers.append( new Kasten::SelectController(this) );
mControllers.append( new Kasten::ClipboardController(this) );
// if( modus != BrowserViewModus )
// mControllers.append( new Kasten::InsertController(mProgram->viewManager(),mProgram->documentManager(),this) );
// mControllers.append( new Kasten::CopyAsController(mProgram->viewManager(),mProgram->documentManager(),this) );
mControllers.append( new Kasten::OverwriteModeController(this) );
mControllers.append( new Kasten::SearchController(this,this) );
mControllers.append( new Kasten::ReplaceController(this,this) );
// mControllers.append( new Kasten::GotoOffsetController(mGroupedViews,this) );
// mControllers.append( new Kasten::SelectRangeController(mGroupedViews,this) );
mControllers.append( new Kasten::BookmarksController(this) );
mControllers.append( new Kasten::PrintController( this ) );
mControllers.append( new Kasten::ViewConfigController(this) );
mControllers.append( new Kasten::ViewModeController(this) );
// Kasten::StatusBar* bottomBar = static_cast<Kasten::StatusBar*>( statusBar() );
// mControllers.append( new ViewStatusController(bottomBar) );
// mControllers.append( new ReadOnlyBarController(bottomBar) );
// mControllers.append( new ZoomBarController(bottomBar) );
foreach( Kasten::AbstractXmlGuiController* controller, mControllers )
controller->setTargetModel( mByteArrayView );
#if 0
QDesignerFormWindowManagerInterface* manager = mDocument->form()->core()->formWindowManager();
KActionCollection* ac = actionCollection();
KStandardAction::save( this, SLOT(save()), ac);
ac->addAction( "adjust_size", manager->actionAdjustSize() );
ac->addAction( "break_layout", manager->actionBreakLayout() );
ac->addAction( "designer_cut", manager->actionCut() );
ac->addAction( "designer_copy", manager->actionCopy() );
ac->addAction( "designer_paste", manager->actionPaste() );
ac->addAction( "designer_delete", manager->actionDelete() );
ac->addAction( "layout_grid", manager->actionGridLayout() );
ac->addAction( "layout_horiz", manager->actionHorizontalLayout() );
ac->addAction( "layout_vertical", manager->actionVerticalLayout() );
ac->addAction( "layout_split_horiz", manager->actionSplitHorizontal() );
ac->addAction( "layout_split_vert", manager->actionSplitVertical() );
ac->addAction( "designer_undo", manager->actionUndo() );
ac->addAction( "designer_redo", manager->actionRedo() );
ac->addAction( "designer_select_all", manager->actionSelectAll() );
#endif
}
#if 0
void OktetaWidget::save()
{
mDocument->save();
}
#endif
OktetaWidget::~OktetaWidget()
{
qDeleteAll( mControllers );
}
}
|