d4f34166dd
* NEW: Menu shortcut for defining a class or a form as startup class has been removed from the editor (but not from the project tree). * NEW: A new menu to run a specific form as if it was the startup class. [WIKI] * NEW: The wiki is almost finished. Tuning is needed, as the automatic conversion between the old wiki syntax and the new markdown syntax cannot be perfect. Not yet done: history, registration, to do list. [EXAMPLES] * NEW: WaveGenerator: Set the "is-live" property of the 'audiotestsrc' plugin. * NEW: WaveGenerator: Use the 'autoaudiosink' output instead of a specific one. * NEW: WaveGenerator: Allow to choose the wave form. [INTERPRETER] * NEW: A new '-s' command-line option to override the startup class defined in the project. [GB.FORM] * NEW: MaskBox has a new ShowDefault property. When set, the maskbox does not hide its contents anymore when losing the focus if its value was the default value. [GB.GTK] * BUG: Control Move() and MoveScaled() method do not try to resize the control anymore if their width and height arguments are omitted. [GB.MARKDOWN] * BUG: Bug fixes, tuning... [GB.MEDIA] * NEW: MediaControl: An enumeration property can be set through its integer value now. git-svn-id: svn://localhost/gambas/trunk@6153 867c0c6c-44f3-4631-809d-bfa615b0a4ec
61 lines
1.7 KiB
C
61 lines
1.7 KiB
C
/***************************************************************************
|
|
|
|
gbx_project.h
|
|
|
|
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
|
|
|
|
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.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __GBX_PROJECT_H
|
|
#define __GBX_PROJECT_H
|
|
|
|
#include "gbx_class.h"
|
|
|
|
typedef
|
|
struct {
|
|
char *command;
|
|
void (*func)();
|
|
}
|
|
PROJECT_COMMAND;
|
|
|
|
typedef
|
|
void (*PROJECT_COMPONENT_CALLBACK)(char *);
|
|
|
|
#ifndef __GBX_PROJECT_C
|
|
EXTERN char *PROJECT_path;
|
|
EXTERN char *PROJECT_exec_path;
|
|
EXTERN char *PROJECT_name;
|
|
EXTERN char *PROJECT_title;
|
|
EXTERN char *PROJECT_version;
|
|
EXTERN const char *PROJECT_startup;
|
|
EXTERN CLASS *PROJECT_class;
|
|
EXTERN int PROJECT_argc;
|
|
EXTERN char **PROJECT_argv;
|
|
EXTERN char *PROJECT_oldcwd;
|
|
EXTERN char *PROJECT_user_home;
|
|
EXTERN bool PROJECT_run_httpd;
|
|
#endif
|
|
|
|
void PROJECT_init(const char *file);
|
|
void PROJECT_load(void);
|
|
void PROJECT_load_finish(void);
|
|
void PROJECT_exit(void);
|
|
char *PROJECT_get_home(void);
|
|
void PROJECT_analyze_startup(char *addr, int len, PROJECT_COMPONENT_CALLBACK cb);
|
|
|
|
#endif
|