emacs modes

This commit is contained in:
Antoine Fraboulet 2006-01-01 19:34:05 +00:00
parent 9e591c5845
commit dfde6fc246
9 changed files with 45 additions and 10 deletions

View file

@ -612,4 +612,5 @@ ResultFrame::OnSize(wxSizeEvent& e)
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -254,4 +254,5 @@ class ResultFrame: public AuxFrame
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -1,6 +1,5 @@
/* Eliot */
/* Copyright (C) 1999 Antoine Fraboulet */
/* */
/* This file is part of Eliot. */
/* */
@ -20,7 +19,7 @@
/**
* \file ewx.h
* \brief Eliot wxwidgets defines
* \brief Eliot wxwidgets switch and defines
* \author Antoine Fraboulet
* \date 2002
*/
@ -74,3 +73,10 @@
#endif // ENABLE_NLS && ENABLE_UTF8
#endif // __EWX__
/// Local Variables:
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -451,8 +451,9 @@ GfxBoard::DrawBoard(wxDC *dc)
dc->SetFont(wxNullFont);
}
/// Local Variables:
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -108,8 +108,9 @@ class GfxBoard : public wxWindow
#endif
/// Local Variables:
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -229,6 +229,8 @@ GfxResult::OnSize(wxSizeEvent& e)
/* ************************************************** */
/// Local Variables:
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -66,4 +66,5 @@ class GfxResult : public wxControl
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -16,6 +16,13 @@
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
* \file main.cc
* \brief Eliot main entry point
* \author Antoine Fraboulet
* \date 2005
*/
#ifdef WIN32 // mingw32 hack
# undef Yield
# undef CreateDialog
@ -82,3 +89,9 @@ EliotApp::OnExit()
}
/// Local Variables:
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// indent-tabs-mode: nil
/// End:

View file

@ -16,9 +16,15 @@
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
// -*- C++ -*-
#ifndef _MAINFRAME_H
#define _MAINFRAME_H
/**
* \file mainframe.h
* \brief Main frame for the Eliot GUI
* \author Antoine Fraboulet
* \date 2005
*/
#ifndef _MAINFRAME_H_
#define _MAINFRAME_H_
#include "dic.h"
#include "game.h"
@ -99,12 +105,15 @@ public:
// *******
// Objects
// *******
void OnListCtrlSelected (wxListEvent& event);
void OnListCtrlActivated (wxListEvent& event);
void OnCloseWindow (wxCloseEvent& event);
DECLARE_EVENT_TABLE()
};
#endif
/// Local Variables:
/// mode: c++
/// mode: hs-minor
/// c-basic-offset: 4
/// End: