/***************************************************************
* Name: codestatconfig.h
* Purpose: Code::Blocks plugin
* Author: Zlika
* Created: 11/09/2005
* Copyright: (c) Zlika
* License: GPL
**************************************************************/
#ifndef CODESTATCONFIG_H
#define CODESTATCONFIG_H
#include <configmanager.h>
#include <wx/dialog.h>
#include <wx/xrc/xmlres.h>
#include <wx/intl.h>
#include <wx/textctrl.h>
#include <wx/combobox.h>
#include <wx/stattext.h>
#include "language_def.h"
class CodeStatConfigDlg : public wxDialog
{
public:
CodeStatConfigDlg(wxWindow* parent, LanguageDef lang[NB_FILETYPES]);
virtual ~CodeStatConfigDlg();
protected:
//void SaveSettings();
void ComboBoxEvent(wxCommandEvent & event);
void PrintLanguageInfo(int id);
void EndModal(int retCode);
private:
LanguageDef languages[NB_FILETYPES];
DECLARE_EVENT_TABLE()
};
#endif // CODESTATCONFIG_H
syntax highlighted by Code2HTML, v. 0.9.1