Click here to Skip to main content
15,885,278 members
Articles / Artificial Intelligence

Introduction to wxWidgets

Rate me:
Please Sign up or sign in to vote.
4.55/5 (120 votes)
25 Dec 2005GPL321 min read 1.7M   7.2K   330  
A beginner's tutorial on wxWidgets for cross platform GUI development.
/* EyeCareApp.h
 * 
 * Copyright (C) 3 September, 2005 Priyank Bolia
 * http://www.priyank.in
 * 
 * This code is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This code 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 * MA 02111-1307, USA
 */

#pragma once

#include "stdwx.h" 
#include "eyecareframe.h"
#include "autostartup.h"
#include <wx/snglinst.h>

class CEyeCareApp : public wxApp
{
private:
	CEyeCareFrame *m_pMainFrame;
	wxSingleInstanceChecker *m_checker;
public:
	CEyeCareApp(void);
	virtual ~CEyeCareApp(void);

protected:
    virtual bool OnInit();
	int OnExit();
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions