From f3454874c6097225d806fb2fc9f4fb9e19de6abe Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Fri, 3 Mar 2017 19:06:54 -0800 Subject: Trial move some key global variables into CyteKit. --- CyteKit/CyteKit.h | 1 + CyteKit/extern.h | 30 ++++++++++++++++++++++++++++++ CyteKit/extern.mm | 42 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 CyteKit/extern.h create mode 100644 CyteKit/extern.mm (limited to 'CyteKit') diff --git a/CyteKit/CyteKit.h b/CyteKit/CyteKit.h index 3edcc88..6dd0479 100644 --- a/CyteKit/CyteKit.h +++ b/CyteKit/CyteKit.h @@ -32,6 +32,7 @@ #include "CyteKit/WebViewTableViewCell.h" #include "CyteKit/countByEnumeratingWithState.h" +#include "CyteKit/extern.h" #include "CyteKit/stringWithUTF8Bytes.h" #include "CyteKit/webScriptObjectInContext.h" diff --git a/CyteKit/extern.h b/CyteKit/extern.h new file mode 100644 index 0000000..c7bc270 --- /dev/null +++ b/CyteKit/extern.h @@ -0,0 +1,30 @@ +/* Cydia - iPhone UIKit Front-End for Debian APT + * Copyright (C) 2008-2015 Jay Freeman (saurik) +*/ + +/* GNU General Public License, Version 3 {{{ */ +/* + * Cydia 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 3 of the License, + * or (at your option) any later version. + * + * Cydia 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 Cydia. If not, see . +**/ +/* }}} */ + +#ifndef CyteKit_extern_H +#define CyteKit_extern_H + +#include + +extern bool IsWildcat_; +extern CGFloat ScreenScale_; + +#endif//CyteKit_extern_H diff --git a/CyteKit/extern.mm b/CyteKit/extern.mm new file mode 100644 index 0000000..c1dc806 --- /dev/null +++ b/CyteKit/extern.mm @@ -0,0 +1,42 @@ +/* Cydia - iPhone UIKit Front-End for Debian APT + * Copyright (C) 2008-2015 Jay Freeman (saurik) +*/ + +/* GNU General Public License, Version 3 {{{ */ +/* + * Cydia 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 3 of the License, + * or (at your option) any later version. + * + * Cydia 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 Cydia. If not, see . +**/ +/* }}} */ + +#include +#include + +bool IsWildcat_; +CGFloat ScreenScale_; + +__attribute__((__constructor__)) +void CyteKit_extern() { + UIScreen *screen([UIScreen mainScreen]); + if ([screen respondsToSelector:@selector(scale)]) + ScreenScale_ = [screen scale]; + else + ScreenScale_ = 1; + + UIDevice *device([UIDevice currentDevice]); + if ([device respondsToSelector:@selector(userInterfaceIdiom)]) { + UIUserInterfaceIdiom idiom([device userInterfaceIdiom]); + if (idiom == UIUserInterfaceIdiomPad) + IsWildcat_ = true; + } +} -- cgit v1.2.3