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
|
/***************************************************************************
kfilereplaceview.h - description
-------------------
begin : sam oct 16 15:28:00 CEST 1999
copyright : (C) 1999 by François Dupoux <dupoux@dupoux.com>
(C) 2004 Emiliano Gulmini <emi_barbarossa@yahoo.it>
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef KFILEREPLACEVIEW_H
#define KFILEREPLACEVIEW_H
//QT
#include <qlcdnumber.h>
//KDE
class KMenu;
class K3ListView;
//local
#include "kfilereplaceviewwdg.h"
#include "configurationclasses.h"
class coord
{
public:
int line,
column;
public:
coord(){ line = 1;
column = 1;}
coord(const coord& c) { line = c.line;
column = c.column;}
coord operator=(const coord& c) { line = c.line;
column = c.column;
return (*this);}
};
/**
* The view of KFilereplace.
*/
class KFileReplaceView : public KFileReplaceViewWdg
{
Q_OBJECT
private:
KMenu* m_menuResult;
RCOptions* m_option;
K3ListViewItem* m_lviCurrent;
K3ListView* m_rv,
* m_sv;
public://Constructors
KFileReplaceView(RCOptions* info, QWidget *parent,const char *name);
public:
QString currentPath();
void showSemaphore(const QString &s);
void displayScannedFiles(int filesNumber) { m_lcdFilesNumber->display(QString::number(filesNumber,10)); }
void stringsInvert(bool invertAll);
void changeView(bool searchingOnlyMode);
K3ListView* getResultsView();
K3ListView* getStringsView();
void updateOptions(RCOptions* info) { m_option = info; }
void loadMap(KeyValueMap extMap){ loadMapIntoView(extMap); }
KeyValueMap getStringsViewMap()const { return m_option->m_mapStringsView;}
void setCurrentStringsViewMap(){ setMap(); }
//void emitSearchingOnlyMode(bool b) { emit searchingOnlyMode(b); }
public slots:
void slotMouseButtonClicked (int button, Q3ListViewItem *lvi, const QPoint &pos);
void slotResultProperties();
void slotResultOpen();
void slotResultOpenWith();
void slotResultDirOpen();
void slotResultEdit();
void slotResultDelete();
void slotResultTreeExpand();
void slotResultTreeReduce();
void slotStringsAdd();
void slotQuickStringsAdd(const QString& quickSearch, const QString& quickReplace);
void slotStringsDeleteItem();
void slotStringsEmpty();
void slotStringsEdit();
void slotStringsSave();
private:
void initGUI();
void raiseStringsView();
void raiseResultsView();
coord extractWordCoordinates(Q3ListViewItem* lvi);
void expand(Q3ListViewItem *lviCurrent, bool b);
void setMap();
void loadMapIntoView(KeyValueMap map);
void whatsThis();
/*signals:
void resetActions();
void searchingOnlyMode(bool);*/
};
#endif // KFILEREPLACEVIEW_H
|