src/canvas/Makefile
src/gizmos/Makefile
src/plot/Makefile
+ src/applet/Makefile
samples/Makefile
samples/mmedia/Makefile
samples/ogl/Makefile
samples/gizmos/splittree/Makefile
samples/xml/Makefile
samples/plot/Makefile
+ samples/applet/Makefile
utils/Makefile
utils/wxrc/Makefile
utils/wxrcedit/Makefile
src/canvas/Makefile
src/gizmos/Makefile
src/plot/Makefile
+ src/applet/Makefile
samples/Makefile
samples/mmedia/Makefile
samples/ogl/Makefile
samples/gizmos/splittree/Makefile
samples/xml/Makefile
samples/plot/Makefile
+ samples/applet/Makefile
utils/Makefile
utils/wxrc/Makefile
utils/wxrcedit/Makefile
src/canvas/Makefile
src/gizmos/Makefile
src/plot/Makefile
+ src/applet/Makefile
samples/Makefile
samples/mmedia/Makefile
samples/ogl/Makefile
samples/gizmos/splittree/Makefile
samples/xml/Makefile
samples/plot/Makefile
+ samples/applet/Makefile
utils/Makefile
utils/wxrc/Makefile
utils/wxrcedit/Makefile
# $Id$
-CONTRIB_SAMPLES=mmedia ogl stc gizmos canvas xml plot
+CONTRIB_SAMPLES=mmedia ogl stc gizmos canvas xml plot applet
all:
@for d in $(CONTRIB_SAMPLES); do (cd $$d && $(MAKE)); done
--- /dev/null
+#
+# File: Makefile.in
+# Author: Julian Smart
+# Created: 2000
+# Updated:
+# Copyright: (c) 2000 Julian Smart
+#
+# "%W% %G%"
+#
+# Makefile for the multicell example (UNIX).
+
+top_srcdir = @top_srcdir@/..
+top_builddir = ../../..
+program_dir = contrib/samples/applet
+
+PROGRAM=monitor
+
+DATAFILES=about.html index.html
+
+OBJECTS=applet.o dialogs_wdr.o monitorapplet.o combobox.o
+
+APPEXTRALIBS=$(top_builddir)/lib/libapplet.@WX_TARGET_LIBRARY_TYPE@
+APPEXTRADEFS=-I$(top_srcdir)/contrib/include
+
+include $(top_builddir)/src/makeprog.env
#ifdef __BORLANDC__
#pragma hdrstop
#endif
+
+#include "wx/wx.h"
#include "wx/applet/window.h"
#include "applet.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
+
+#include "wx/wx.h"
#include "combobox.h"
/*------------------------- Implementation --------------------------------*/
<html>
<head><title>Widgets demo</title></head>
-<body>
+<body text="#000000" bgcolor="#D0D0D0">
+
<h3>wxHtmlWidgetCell demonstration</h3>
-There is binded window somewhere around. Enjoy it.
+There is an embedded window somewhere around. Enjoy it.
<A HREF="about.html">About...</A>
#include "wx/wxprec.h"
// Include private headers
+#include "wx/wx.h"
#include "monitorapplet.h"
/*---------------------------- Global variables ---------------------------*/
m_Mfr->Clear();
for (m = m_Monitors,i = 0; m->m_Mfr[0] != 0; m++) {
- if (stricmp(buf,m->m_Mfr) != 0) {
+ if (wxStricmp(buf,m->m_Mfr) != 0) {
m_Mfr->Append(m->m_Mfr);
- if (stricmp(m_Data->m_Monitor.m_Mfr,m->m_Mfr) == 0)
+ if (wxStricmp(m_Data->m_Monitor.m_Mfr,m->m_Mfr) == 0)
selected = i;
strcpy(buf,m->m_Mfr);
i++;
mfrStr = m_Mfr->GetStringSelection();
m_Model->Clear();
for (m = m_Monitors,i = 0; m->m_Mfr[0] != 0; m++) {
- if (stricmp(mfrStr,m->m_Mfr) == 0) {
+ if (wxStricmp(mfrStr,m->m_Mfr) == 0) {
m_Model->Append(m->m_Model);
- if (selectCurrent && stricmp(m_Data->m_Monitor.m_Model,m->m_Model) == 0)
+ if (selectCurrent && wxStricmp(m_Data->m_Monitor.m_Model,m->m_Model) == 0)
selected = i;
i++;
}
# $Id$
-CONTRIB_SUBDIRS=ogl mmedia stc xml
+CONTRIB_SUBDIRS=ogl mmedia stc xml applet
all:
@for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE)); done
--- /dev/null
+# $Id$
+
+top_srcdir = @top_srcdir@/..
+top_builddir = ../../..
+libsrc_dir = contrib/src/applet
+
+TARGET_LIBNAME=libapplet
+
+LIBVERSION_CURRENT=1
+LIBVERSION_REVISION=0
+LIBVERSION_AGE=0
+
+HEADER_PATH=$(top_srcdir)/contrib/include/wx
+HEADER_SUBDIR=applet
+
+HEADERS=applet.h appletwindow.h
+
+OBJECTS=applet.o appletwindow.o
+
+APPEXTRADEFS=-I$(top_srcdir)/contrib/include
+
+include $(top_builddir)/src/makelib.env
+