Changed ui_*.h to uipriv_*.h pending a public non-portable API.

This commit is contained in:
Pietro Gagliardi 2015-04-07 00:26:27 -04:00
parent 20061b8e78
commit 9298bc9e37
17 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,5 @@
// 4 december 2014 // 4 december 2014
#include "ui_darwin.h" #import "uipriv_darwin.h"
// TODO is there a better alternative to NSCAssert()? preferably a built-in allocator that panics on out of memory for us? // TODO is there a better alternative to NSCAssert()? preferably a built-in allocator that panics on out of memory for us?

View File

@ -1,5 +1,5 @@
// 4 december 2014 // 4 december 2014
#include "ui_windows.h" #include "uipriv_windows.h"
// wrappers for allocator of choice // wrappers for allocator of choice
// panics on memory exhausted, undefined on heap corruption or other unreliably-detected malady (see http://stackoverflow.com/questions/28761680/is-there-a-windows-api-memory-allocator-deallocator-i-can-use-that-will-just-giv) // panics on memory exhausted, undefined on heap corruption or other unreliably-detected malady (see http://stackoverflow.com/questions/28761680/is-there-a-windows-api-memory-allocator-deallocator-i-can-use-that-will-just-giv)

View File

@ -1,5 +1,5 @@
// 25 february 2015 // 25 february 2015
#include "ui_windows.h" #include "uipriv_windows.h"
// uncomment the following line to enable debug messages // uncomment the following line to enable debug messages
#define tableDebug #define tableDebug

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_darwin.h" #import "uipriv_darwin.h"
@interface uiApplication : NSApplication @interface uiApplication : NSApplication
@end @end

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_unix.h" #include "uipriv_unix.h"
struct uiInitError { struct uiInitError {
GError *err; GError *err;

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_windows.h" #include "uipriv_windows.h"
HINSTANCE hInstance; HINSTANCE hInstance;
int nCmdShow; int nCmdShow;

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_darwin.h" #import "uipriv_darwin.h"
// TODO merge with init_darwin.m? // TODO merge with init_darwin.m?

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_unix.h" #include "uipriv_unix.h"
// #qo pkg-config: gtk+-3.0 // #qo pkg-config: gtk+-3.0

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_windows.h" #include "uipriv_windows.h"
// #qo LDFLAGS: -luser32 -lkernel32 -lgdi32 -luxtheme -lmsimg32 -lcomdlg32 -lole32 -loleaut32 -loleacc -luuid // #qo LDFLAGS: -luser32 -lkernel32 -lgdi32 -luxtheme -lmsimg32 -lcomdlg32 -lole32 -loleaut32 -loleacc -luuid

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "tablepriv.h" #include "uipriv_windows.h"
// Common code for controls with a single window handle. // Common code for controls with a single window handle.
// The only method NOT defined is preferredSize(); this differs between controls. // The only method NOT defined is preferredSize(); this differs between controls.

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_windows.h" #include "uipriv_windows.h"
#define MBTWC(str, wstr, bufsiz) MultiByteToWideChar(CP_UTF8, 0, str, -1, wstr, bufsiz) #define MBTWC(str, wstr, bufsiz) MultiByteToWideChar(CP_UTF8, 0, str, -1, wstr, bufsiz)

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_darwin.h" #import "uipriv_darwin.h"
@interface uiWindowDelegate : NSObject <NSWindowDelegate> @interface uiWindowDelegate : NSObject <NSWindowDelegate>
@property uiWindow *w; @property uiWindow *w;

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_unix.h" #include "uipriv_unix.h"
struct uiWindow { struct uiWindow {
GtkWidget *widget; GtkWidget *widget;

View File

@ -1,5 +1,5 @@
// 6 april 2015 // 6 april 2015
#include "ui_windows.h" #include "uipriv_windows.h"
struct uiWindow { struct uiWindow {
HWND hwnd; HWND hwnd;