Skip to content

Commit a148fe5

Browse files
authored
Merge pull request #1004 from Stefterv/hide-scrollbars
Hide scrollbars & Version indicator
2 parents 1a3ea50 + 6ed9bf6 commit a148fe5

File tree

6 files changed

+123
-10
lines changed

6 files changed

+123
-10
lines changed

app/src/main/resources/about-processing.svg

+74
Loading

app/src/processing/app/syntax/JEditTextArea.java

+2
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ public final void setElectricScroll(int electricScroll) {
399399
public void updateScrollBars() {
400400
if (vertical != null && visibleLines != 0) {
401401
vertical.setValues(firstLine,visibleLines,0,getLineCount());
402+
vertical.setVisible(visibleLines < getLineCount());
402403
vertical.setUnitIncrement(2);
403404
vertical.setBlockIncrement(visibleLines);
404405
}
@@ -424,6 +425,7 @@ public void updateScrollBars() {
424425
// https://github.com/processing/processing/issues/319
425426
// https://github.com/processing/processing/issues/355
426427
//setValues(int newValue, int newExtent, int newMin, int newMax)
428+
horizontal.setVisible(painterWidth < width);
427429
if (horizontalOffset < 0) {
428430
horizontal.setValues(-horizontalOffset, painterWidth, -leftHandGutter, width);
429431
} else {

app/src/processing/app/ui/Editor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,7 @@ protected void handleOpenInternal(String path) throws EditorException {
22552255
* something like "sketch_070752a - Processing 0126"
22562256
*/
22572257
public void updateTitle() {
2258-
setTitle(sketch.getName() + " | Processing " + Base.getVersionName());
2258+
setTitle(sketch.getName());
22592259

22602260
if (!sketch.isUntitled()) {
22612261
// Set current file for macOS so that cmd-click in title bar works.

app/src/processing/app/ui/EditorFooter.java

+42-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
import java.awt.Graphics;
3131
import java.awt.Graphics2D;
3232
import java.awt.Image;
33+
import java.awt.datatransfer.Clipboard;
34+
import java.awt.datatransfer.StringSelection;
3335
import java.awt.event.MouseAdapter;
3436
import java.awt.event.MouseEvent;
3537
import java.awt.font.FontRenderContext;
@@ -39,6 +41,7 @@
3941

4042
import javax.swing.*;
4143

44+
import processing.app.Base;
4245
import processing.app.Mode;
4346
import processing.app.Sketch;
4447
import processing.app.contrib.ContributionManager;
@@ -83,10 +86,14 @@ public class EditorFooter extends Box {
8386
Image gradient;
8487
Color bgColor;
8588

89+
Box tabBar;
90+
8691
JPanel cardPanel;
8792
CardLayout cardLayout;
8893
Controller controller;
8994

95+
JLabel version;
96+
9097
int updateCount;
9198

9299

@@ -98,8 +105,33 @@ public EditorFooter(Editor eddie) {
98105
cardPanel = new JPanel(cardLayout);
99106
add(cardPanel);
100107

108+
tabBar = new Box(BoxLayout.X_AXIS);
109+
101110
controller = new Controller();
102-
add(controller);
111+
tabBar.add(controller);
112+
113+
version = new JLabel(Base.getVersionName());
114+
version.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, Editor.RIGHT_GUTTER));
115+
version.addMouseListener(new MouseAdapter() {
116+
public void mousePressed(MouseEvent e) {
117+
if(e.getClickCount() == 5){
118+
Base.DEBUG = !Base.DEBUG;
119+
}
120+
var debugInformation = String.join("\n",
121+
"Version: " + Base.getVersionName(),
122+
"Revision: " + Base.getRevision(),
123+
"OS: " + System.getProperty("os.name") + " " + System.getProperty("os.version") + " " + System.getProperty("os.arch"),
124+
"Java: " + System.getProperty("java.version") + " " + System.getProperty("java.vendor")
125+
);
126+
var stringSelection = new StringSelection(debugInformation);
127+
var clipboard = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard();
128+
clipboard.setContents(stringSelection, null);
129+
}
130+
});
131+
132+
tabBar.add(version);
133+
134+
add(tabBar);
103135

104136
updateTheme();
105137
}
@@ -175,6 +207,15 @@ public void updateTheme() {
175207

176208
// replace colors for the "updates" indicator
177209
controller.updateTheme();
210+
211+
tabBar.setOpaque(true);
212+
tabBar.setBackground(bgColor);
213+
214+
var updatesTextColor = Theme.getColor("footer.updates.text.color");
215+
var withAlpha = new Color(updatesTextColor.getRed(), updatesTextColor.getGreen(), updatesTextColor.getBlue(), 128);
216+
217+
version.setForeground(withAlpha);
218+
version.setFont(font);
178219
}
179220

180221

app/src/processing/app/ui/Start.kt

+4-8
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@ import androidx.compose.runtime.*
1212
import androidx.compose.ui.Alignment
1313
import androidx.compose.ui.Modifier
1414
import androidx.compose.ui.draw.clip
15-
import androidx.compose.ui.graphics.toComposeImageBitmap
16-
import androidx.compose.ui.unit.DpSize
15+
import androidx.compose.ui.res.painterResource
1716
import androidx.compose.ui.unit.dp
1817
import androidx.compose.ui.window.*
1918
import kotlinx.coroutines.delay
2019
import kotlinx.coroutines.launch
2120
import processing.app.Base
22-
import processing.app.Platform
23-
import javax.imageio.ImageIO
2421

2522
/**
2623
* Show a splash screen window. A rewrite of Splash.java
@@ -29,8 +26,6 @@ class Start {
2926
companion object {
3027
@JvmStatic
3128
fun main(args: Array<String>) {
32-
val splash = Platform.getContentFile("lib/about-processing.png")
33-
val image = ImageIO.read(splash).toComposeImageBitmap()
3429
val duration = 200
3530
val timeMargin = 50
3631

@@ -44,7 +39,8 @@ class Start {
4439
resizable = false,
4540
state = rememberWindowState(
4641
position = WindowPosition(Alignment.Center),
47-
size = DpSize(image.width.dp / 2 , image.height.dp / 2)
42+
width = 578.dp,
43+
height = 665.dp
4844
)
4945
) {
5046
var visible by remember { mutableStateOf(false) }
@@ -81,7 +77,7 @@ class Start {
8177
)
8278
) {
8379
Image(
84-
bitmap = image,
80+
painter = painterResource("about-processing.svg"),
8581
contentDescription = "About",
8682
modifier = Modifier
8783
.fillMaxSize()

build/shared/lib/about-processing.png

-710 KB
Binary file not shown.

0 commit comments

Comments
 (0)