5.10 IDE wishes

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User avatar
Tenaja
Addict
Addict
Posts: 1959
Joined: Tue Nov 09, 2010 10:15 pm

5.10 IDE wishes

Post by Tenaja »

I know the tabgadget is new, and I greatly appreciate it!!!

Before I forget, I have a couple requests...

1. Let us change the colors of the tabs, both for regular & Project tabs and also another color for the Active file (project dependent). I know the control has the option...
2. Add a right-click menu on the tabs with...
  • Tab preference--multiline ON/Off
    Tab preference--Display Close button on/off
    Copy Filepath
    File close
    Project close (if applicable)
    ...maybe a few other "logical" items
User avatar
Shield
Addict
Addict
Posts: 1021
Joined: Fri Jan 21, 2011 8:25 am
Location: 'stralia!
Contact:

Re: 5.10 IDE wishes

Post by Shield »

Tenaja wrote:...maybe a few other "logical" items
  • Save
  • Close all but this
  • Open Folder
Image
Blog: Why Does It Suck? (http://whydoesitsuck.com/)
"You can disagree with me as much as you want, but during this talk, by definition, anybody who disagrees is stupid and ugly."
- Linus Torvalds
User avatar
STARGÅTE
Addict
Addict
Posts: 2227
Joined: Thu Jan 10, 2008 1:30 pm
Location: Germany, Glienicke
Contact:

Re: 5.10 IDE wishes

Post by STARGÅTE »

+1
  • add to project
  • remove from project
@freak:
If a right click was detected, you can determined with EventTab() the hovered tab.

Code: Select all

If EventType() = #PB_EventType_LeftClick
	Debug EventTab() ; returns the position of the hovered tab
	; PopupMenu ...
EndIf
PB 6.01 ― Win 10, 21H2 ― Ryzen 9 3900X, 32 GB ― NVIDIA GeForce RTX 3080 ― Vivaldi 6.0 ― www.unionbytes.de
Lizard - Script language for symbolic calculations and moreTypeface - Sprite-based font include/module
User avatar
Tenaja
Addict
Addict
Posts: 1959
Joined: Tue Nov 09, 2010 10:15 pm

Re: 5.10 IDE wishes

Post by Tenaja »

+1 on the menu items suggested by Shield and Stargate!
User avatar
Guimauve
Enthusiast
Enthusiast
Posts: 742
Joined: Wed Oct 22, 2003 2:51 am
Location: Canada

Re: 5.10 IDE wishes

Post by Guimauve »

Hello everyone,

Sorry if I'm little bit off topic form previous message but ...

I think when the IDE start, the Recent Files menu management system should remove non existing files from the entries. For the moment, the system handle the non existing file scenario by popping up a MessageRequester() but simply removing non existing entries from the list will be better.

Best regards
Guimauve
Dear Optimist, Pessimist,
and Realist,

While you guys were
busy arguing about the
glass of water, I DRANK IT !

Sincerely,
the Opportunist
sec
Enthusiast
Enthusiast
Posts: 792
Joined: Sat Aug 09, 2003 3:13 am
Location: 90-61-92 // EU or ASIA
Contact:

Re: 5.10 IDE wishes

Post by sec »

I wish it identation more smater..

Now i type:
For ...
Next ; << it does not do auto identation here.
Post Reply