projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
non-pch build fix, indentation and whitespace cleanup
[wxWidgets.git]
/
src
/
unix
/
baseunix.cpp
diff --git
a/src/unix/baseunix.cpp
b/src/unix/baseunix.cpp
index bc0b90d88c3773353c9831f9463f529341957443..b2dacab6dd8dcf89e89f5a0f5b900a3a76b97178 100644
(file)
--- a/
src/unix/baseunix.cpp
+++ b/
src/unix/baseunix.cpp
@@
-1,12
+1,12
@@
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
-// Name: unix/baseunix.cpp
+// Name:
src/
unix/baseunix.cpp
// Purpose: misc stuff only used in console applications under Unix
// Author: Vadim Zeitlin
// Modified by:
// Created: 23.06.2003
// RCS-ID: $Id$
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
// Purpose: misc stuff only used in console applications under Unix
// Author: Vadim Zeitlin
// Modified by:
// Created: 23.06.2003
// RCS-ID: $Id$
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
-// License: wxWi
dget
s licence
+// License: wxWi
ndow
s licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
@@
-27,11
+27,14
@@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/intl.h"
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/intl.h"
+ #include "wx/utils.h"
#endif //WX_PRECOMP
#include "wx/apptrait.h"
#endif //WX_PRECOMP
#include "wx/apptrait.h"
-#include "wx/utils.h"
#include "wx/unix/execute.h"
#include "wx/unix/execute.h"
+#include "wx/evtloop.h"
+
+#include "wx/unix/private/timer.h"
// for waitpid()
#include <sys/types.h>
// for waitpid()
#include <sys/types.h>
@@
-81,33
+84,22
@@
wxConsoleAppTraits::WaitForChild(wxExecuteData& execData)
return exitcode;
}
return exitcode;
}
-// ----------------------------------------------------------------------------
-// misc other stuff
-// ----------------------------------------------------------------------------
+#if wxUSE_TIMER
-// this is in mac/utils.cpp under Mac
-#ifndef __WXMAC__
-
-wxToolkitInfo& wxConsoleAppTraits::GetToolkitInfo()
+wxTimerImpl *wxConsoleAppTraits::CreateTimerImpl(wxTimer *timer)
{
{
- static wxToolkitInfo info;
- int major, minor;
- char name[256];
+ // this doesn't work yet as there is no main loop in console applications
+ // (but it will be added later)
+ return new wxUnixTimerImpl(timer);
+}
- if ( sscanf(WXWIN_OS_DESCRIPTION, "%255s %d.%d", name, &major, &minor) != 3 )
- {
- // unreckognized uname string format
- major =
- minor = -1;
- }
+#endif // wxUSE_TIMER
- info.versionMajor = major;
- info.versionMinor = minor;
- info.name = _T("wxBase");
- info.os = wxUNIX;
+#if wxUSE_CONSOLE_EVENTLOOP
- return info;
+wxEventLoopBase *wxConsoleAppTraits::CreateEventLoop()
+{
+ return new wxEventLoop();
}
}
-#endif // __WXMAC__
-
+#endif // wxUSE_CONSOLE_EVENTLOOP