mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
This means removing a few autoreleases so it’ll leak when building without ARC, but as this is just for a short-lived test, it shouldn’t matter.
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
#ifndef COCOA_P0XQO9KO
|
|
#define COCOA_P0XQO9KO
|
|
|
|
#include <text/tokenize.h>
|
|
#include <oak/oak.h>
|
|
|
|
static BOOL IsGUITestsEnabled (std::string const& testName)
|
|
{
|
|
std::set<std::string> tests;
|
|
std::string envVar = getenv("GUI_TESTS") ?: "";
|
|
citerate(test, text::tokenize(envVar.begin(), envVar.end(), ' '))
|
|
tests.insert(*test);
|
|
|
|
return tests.find("all") != tests.end() || tests.find(testName) != tests.end();
|
|
}
|
|
|
|
static void OakSetupApplicationWithView (NSView* aView, std::string testName = NULL_STR)
|
|
{
|
|
if(testName == NULL_STR)
|
|
{
|
|
testName = [[[NSProcessInfo processInfo] processName] UTF8String];
|
|
if(testName.find("test_") == 0)
|
|
testName = testName.substr(strlen("test_"));
|
|
}
|
|
|
|
if(!IsGUITestsEnabled(testName))
|
|
return;
|
|
|
|
[NSApplication sharedApplication];
|
|
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
|
|
[NSApp activateIgnoringOtherApps:YES];
|
|
|
|
NSString* appName = [[NSProcessInfo processInfo] processName];
|
|
appName = [[[appName componentsSeparatedByString:@"_"] componentsJoinedByString:@" "] capitalizedString];
|
|
|
|
NSMenu* appMenu = [NSMenu new];
|
|
[appMenu addItem:[[NSMenuItem alloc] initWithTitle:[@"Quit " stringByAppendingString:appName] action:@selector(terminate:) keyEquivalent:@"q"]];
|
|
|
|
NSMenuItem* appMenuItem = [NSMenuItem new];
|
|
[appMenuItem setSubmenu:appMenu];
|
|
|
|
NSMenu* mainMenu = [NSMenu new];
|
|
[mainMenu addItem:appMenuItem];
|
|
[NSApp setMainMenu:mainMenu];
|
|
|
|
NSRect winRect = [NSWindow frameRectForContentRect:NSInsetRect([aView bounds], -10, -10) styleMask:NSTitledWindowMask|NSResizableWindowMask];
|
|
NSWindow* window = [[NSWindow alloc] initWithContentRect:winRect styleMask:NSTitledWindowMask|NSResizableWindowMask backing:NSBackingStoreBuffered defer:NO];
|
|
[aView setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
|
|
[aView setFrame:NSInsetRect([[window contentView] bounds], 10, 10)];
|
|
[[window contentView] addSubview:aView];
|
|
|
|
[window cascadeTopLeftFromPoint:NSMakePoint(20, 20)];
|
|
[window setTitle:appName];
|
|
[window setFrameAutosaveName:@"Main Window"];
|
|
[window makeKeyAndOrderFront:nil];
|
|
|
|
[NSApp run];
|
|
}
|
|
|
|
#endif /* end of include guard: COCOA_P0XQO9KO */
|