Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide scrollbars & Version indicator #1004

Merged
merged 5 commits into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions app/src/main/resources/about-processing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions app/src/processing/app/syntax/JEditTextArea.java
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ public final void setElectricScroll(int electricScroll) {
public void updateScrollBars() {
if (vertical != null && visibleLines != 0) {
vertical.setValues(firstLine,visibleLines,0,getLineCount());
vertical.setVisible(visibleLines < getLineCount());
vertical.setUnitIncrement(2);
vertical.setBlockIncrement(visibleLines);
}
Expand All @@ -424,6 +425,7 @@ public void updateScrollBars() {
// https://github.com/processing/processing/issues/319
// https://github.com/processing/processing/issues/355
//setValues(int newValue, int newExtent, int newMin, int newMax)
horizontal.setVisible(painterWidth < width);
if (horizontalOffset < 0) {
horizontal.setValues(-horizontalOffset, painterWidth, -leftHandGutter, width);
} else {
Expand Down
2 changes: 1 addition & 1 deletion app/src/processing/app/ui/Editor.java
Original file line number Diff line number Diff line change
Expand Up @@ -2255,7 +2255,7 @@ protected void handleOpenInternal(String path) throws EditorException {
* something like "sketch_070752a - Processing 0126"
*/
public void updateTitle() {
setTitle(sketch.getName() + " | Processing " + Base.getVersionName());
setTitle(sketch.getName());

if (!sketch.isUntitled()) {
// Set current file for macOS so that cmd-click in title bar works.
Expand Down
43 changes: 42 additions & 1 deletion app/src/processing/app/ui/EditorFooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.StringSelection;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.font.FontRenderContext;
Expand All @@ -39,6 +41,7 @@

import javax.swing.*;

import processing.app.Base;
import processing.app.Mode;
import processing.app.Sketch;
import processing.app.contrib.ContributionManager;
Expand Down Expand Up @@ -83,10 +86,14 @@ public class EditorFooter extends Box {
Image gradient;
Color bgColor;

Box tabBar;

JPanel cardPanel;
CardLayout cardLayout;
Controller controller;

JLabel version;

int updateCount;


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

tabBar = new Box(BoxLayout.X_AXIS);

controller = new Controller();
add(controller);
tabBar.add(controller);

version = new JLabel(Base.getVersionName());
version.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, Editor.RIGHT_GUTTER));
version.addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
if(e.getClickCount() == 5){
Base.DEBUG = !Base.DEBUG;
}
var debugInformation = String.join("\n",
"Version: " + Base.getVersionName(),
"Revision: " + Base.getRevision(),
"OS: " + System.getProperty("os.name") + " " + System.getProperty("os.version") + " " + System.getProperty("os.arch"),
"Java: " + System.getProperty("java.version") + " " + System.getProperty("java.vendor")
);
var stringSelection = new StringSelection(debugInformation);
var clipboard = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(stringSelection, null);
}
});

tabBar.add(version);

add(tabBar);

updateTheme();
}
Expand Down Expand Up @@ -175,6 +207,15 @@ public void updateTheme() {

// replace colors for the "updates" indicator
controller.updateTheme();

tabBar.setOpaque(true);
tabBar.setBackground(bgColor);

var updatesTextColor = Theme.getColor("footer.updates.text.color");
var withAlpha = new Color(updatesTextColor.getRed(), updatesTextColor.getGreen(), updatesTextColor.getBlue(), 128);

version.setForeground(withAlpha);
version.setFont(font);
}


Expand Down
12 changes: 4 additions & 8 deletions app/src/processing/app/ui/Start.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,12 @@ import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.toComposeImageBitmap
import androidx.compose.ui.unit.DpSize
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.*
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import processing.app.Base
import processing.app.Platform
import javax.imageio.ImageIO

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

Expand All @@ -44,7 +39,8 @@ class Start {
resizable = false,
state = rememberWindowState(
position = WindowPosition(Alignment.Center),
size = DpSize(image.width.dp / 2 , image.height.dp / 2)
width = 578.dp,
height = 665.dp
)
) {
var visible by remember { mutableStateOf(false) }
Expand Down Expand Up @@ -81,7 +77,7 @@ class Start {
)
) {
Image(
bitmap = image,
painter = painterResource("about-processing.svg"),
contentDescription = "About",
modifier = Modifier
.fillMaxSize()
Expand Down
Binary file removed build/shared/lib/about-processing.png
Binary file not shown.
Loading