Revision: 2979
http://sourceforge.net/p/swingme/code/2979
Author: yuranet
Date: 2025-12-24 14:46:51 +0000 (Wed, 24 Dec 2025)
Log Message:
-----------
make all title bars edge-to-edge
Modified Paths:
--------------
iOSME/res/iOS_theme.xml
iOSME/src/net/yura/ios/plaf/IOSLookAndFeel.java
Modified: iOSME/res/iOS_theme.xml
===================================================================
--- iOSME/res/iOS_theme.xml 2025-12-24 14:33:03 UTC (rev 2978)
+++ iOSME/res/iOS_theme.xml 2025-12-24 14:46:51 UTC (rev 2979)
@@ -200,6 +200,13 @@
+ <style id="titleBar">
+ <state>
+ <color type="BACKGROUND" value="#000000"/>
+ <color type="FOREGROUND" value="#FFFFFF"/>
+ </state>
+ </style>
+ <bind style="titleBar" key="TitleBar"/>
<style id="listRenderer">
<insets top="0" left="0" bottom="1" right="0"/>
Modified: iOSME/src/net/yura/ios/plaf/IOSLookAndFeel.java
===================================================================
--- iOSME/src/net/yura/ios/plaf/IOSLookAndFeel.java 2025-12-24 14:33:03 UTC (rev 2978)
+++ iOSME/src/net/yura/ios/plaf/IOSLookAndFeel.java 2025-12-24 14:46:51 UTC (rev 2979)
@@ -104,10 +104,6 @@
//spinner.addProperty(getSystemImage("plus.square.fill", gray), "iconRight", Style.DISABLED);
setStyleFor("Spinner", spinner);
- Style titleBar = makeStyleFor("TitleBar");
- titleBar.addForeground(0xFFFFFFFF, Style.ALL);
- titleBar.addBorder(new EdgeToEdgeBorder(0xFF000000), Style.ALL);
- setStyleFor("TitleBar", titleBar);
//NSBundle bundle = NSBundle.bundleWithIdentifier("com.apple.UIKit");
NSBundle bundle = NSBundle.bundleForClass(org.moe.natj.objc.Class.fromJavaClass(UIButton.class));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|