/* ktigcc - TIGCC IDE for KDE Copyright (C) 2006 Kevin Kofler 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, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "tpr.h" #include "srcfilewin.h" #include "parsing.h" #include class MainForm; namespace Kate { class View; } class KReplaceWithSelectionS; class QLabel; class QPopupMenu; class QClipboard; class QAccel; class KFindDialog; class KDirWatch; class FunctionDialog; struct SourceFile : public SourceFileWindow { SourceFile(MainForm *mainfrm, const QString &fn, const QString &ft, const QString &hlm, const bool *hle, void *cat, bool isc, bool isasm, bool istxt) : SourceFileWindow(), mainForm(mainfrm), fileName(fn), fileText(ft), hlMode(hlm), hlEnabled(hle), category(cat), isCFile(isc), isASMFile(isasm), isTextFile(istxt) { initBase(); // We can do this only after initializing the variables here. show(); } MainForm *mainForm; QString fileName; QString fileText; QString hlMode; const bool *hlEnabled; void *category; bool isCFile; bool isASMFile; bool isTextFile; LineStartList lineStartList; KReplaceWithSelectionS *kreplace; Kate::View *kateView; QLabel *rowStatusLabel; QLabel *colStatusLabel; QLabel *charsStatusLabel; QLabel *rightStatusLabel; QPopupMenu *te_popup; QAccel *accel; KFindDialog *kfinddialog; unsigned findCurrentLine; KDirWatch *dirWatch; QPopupMenu *findFunctionsPopup; SourceFileFunctions sourceFileFunctions; FunctionDialog *functionDialog; };