You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/dialogs/codeviewerdialog.h

82 lines
2.3 KiB

/***************************************************************************
codeviewerdialog.h - description
-------------------
begin : Fri Aug 1 2003
copyright : (C) 2003 by Brian Thomas
email : brian.thomas@gsfc.nasa.gov
***************************************************************************/
/***************************************************************************
* *
* 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 CODEVIEWERDIALOG_H
#define CODEVIEWERDIALOG_H
#include <tqcolor.h>
#include <tqmap.h>
#include <tqptrlist.h>
#include <tqstring.h>
#include <tqtextedit.h>
#include "../codeviewerstate.h"
#include "codeviewerdialogbase.h"
class CodeDocument;
class TQVBoxLayout;
class TQHBoxLayout;
class TQGridLayout;
class TQFrame;
class UMLObject;
/** This class is sooo ugly I don't know where to begin. For now, its a prototype
* that works, and thats all we need. In the future, a re-write is mandated to
* bring a bit of beauty to this beast. -b.t.
*/
class CodeViewerDialog : public CodeViewerDialogBase
{
TQ_OBJECT
public:
CodeViewerDialog ( TQWidget* parent, CodeDocument * doc, Settings::CodeViewerState state,
const char* name = 0, bool modal = false, WFlags fl = 0 );
~CodeViewerDialog ();
/** return the code viewer state */
Settings::CodeViewerState getState( );
TQString parentDocName;
/**
* Adds a code document to the tabbed output
*/
void addCodeDocument( CodeDocument * doc);
protected:
bool close ( bool alsoDelete );
private:
Settings::CodeViewerState m_state;
void initGUI ( const char * name );
public slots:
protected slots:
virtual void languageChange();
};
#endif // CODEVIEWERDIALOG_H