Dav IDE - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: Prolific Programmers (https://staging.qb64phoenix.com/forumdisplay.php?fid=26) +---- Forum: Dav (https://staging.qb64phoenix.com/forumdisplay.php?fid=34) +---- Thread: Dav IDE (/showthread.php?tid=504) Pages:
1
2
|
Dav IDE - aurel - 05-30-2022 hello Dav I really really like to use your IDE for my qb64 programming but i don't see a way to set Font size to something smaller ( easpecially when larger programs is case) i use in my own editor Consolas 10 in my Windows programs i specially like dark theme named "Davs Colors" i remeber that you sayed ..you made it in Purebasic.. or maybe you have newer version ? tnx RE: Dav IDE - Dav - 05-30-2022 Thanks for the comments. Only 12, 14 & 16pt font sizes are available in the last released IDE. I would have to recompile it to add another font size. I started working on v1.30, to update it to see the newer QB64 commands and fix bugs (it also auto spaces/beautifies the code blocks like the QB64 IDE). Unfortunately I got burned out on it and it was starting to hurt my wrists doing all that coding so i took a break. I'm not done with it yet, and not sure when I will put it up for download. Yes, it is made in Purebasic. If I do update it then yes I will add 10pt font for you. - Dav RE: Dav IDE - aurel - 05-31-2022 Thanks Dav I just have one question can you tell me how look scintilla code for your Dav's Color theme i really like it ..it is one of best dark style i have see. or i need to guess using some sort of Color picker. RE: Dav IDE - Dav - 05-31-2022 Thanks aurel. I use the GoScintilla Library for PureBasic, so I'm setting colors through that. I also made a QB64 IDE style with those colors. I'll post the RGB values for it also. When I get back home tonight I will dig those up for you and post it here - it's on my laptop there. - Dav RE: Dav IDE - aurel - 06-01-2022 OK thanks ..Dav! RE: Dav IDE - Dav - 06-02-2022 Hi @aurel. Sorry for the delay. Here's the PureBasic code where I'm setting the Scintilla colors for Dav's Colors: Code: (Select All) If colors_davstyle = 1 That probably isn't too helpful for you, but here are the default 'Dav's IDE' colors and 'Dav's Colors' scheme setting for the QB64 IDE. Code: (Select All) '[IDE COLOR SCHEMES] Finally, here's the 'Dav's Colors' (R,G,B) colors for each item: Normal text: (205,218,243) Keywords: (86,165,236) Numbers: (255,255,255) Strings: (100,200,150) Metacommand/custom keywords: (86,165,236) Comments: (97,121,159) Background: (33,50,69) Current line background: (47,64,91) Bracket/selection highlight: (51,153,255) - Dav RE: Dav IDE - aurel - 06-02-2022 thanks Dav Quote:That probably isn't too helpful for you, but here are the default 'Dav's IDE' colors and 'Dav's Colors' scheme setting for the QB64 IDE. No..the oposite it is very helpful because i can test this in scintilla control directly RE: Dav IDE - RNBW - 06-03-2022 (05-30-2022, 09:01 AM)aurel Wrote: hello Dav I usually use Dav's IDE with QB64. I would also like to see a 10 point font (Consolas would be fine). I've not been programming with QB64 since before its change to QB64 Phoenix. What I am finding is that I get a compile error with V0.6 and 0.7.1 using Dav's IDE. I don't get it with the QB64 IDE. Doesn't need to be complicated code. Something as simple as: Code: (Select All) for x = 1 to 5 comes up with the error "ERROR: C++ compilation failed". The compilelog.txt file shows: internal\c\c_compiler\bin\c++.exe -w -DGLEW_STATIC -DFREEGLUT_STATIC -DDEPENDENCY_NO_SOCKETS -DDEPENDENCY_NO_PRINTER -DDEPENDENCY_NO_ICON -DDEPENDENCY_NO_SCREENIMAGE internal\c/qbx.cpp -c -o internal\c/qbx.o internal\c\c_compiler\bin\c++.exe -w -DGLEW_STATIC -DFREEGLUT_STATIC -DDEPENDENCY_NO_SOCKETS -DDEPENDENCY_NO_PRINTER -DDEPENDENCY_NO_ICON -DDEPENDENCY_NO_SCREENIMAGE internal\c/libqb/libqb_make_0000000000000.o internal\c/qbx.o -o "C:\Users\raywo\Documents\A_Programming\BASIC\QB64\_avsIDE-TEMPFILE.exe" internal\c/parts/core/src.a -static-libgcc -static-libstdc++ -mwindows -lopengl32 -lglu32 -lwinmm internal\c\c_compiler\bin\objcopy.exe --only-keep-debug "C:\Users\raywo\Documents\A_Programming\BASIC\QB64\_avsIDE-TEMPFILE.exe" "internal\temp/_avsIDE-TEMPFILE.exe.sym" internal\c\c_compiler\bin\objcopy.exe --strip-unneeded "C:\Users\raywo\Documents\A_Programming\BASIC\QB64\_avsIDE-TEMPFILE.exe" The above compile error file means nothing to me but may be helpful I have tried on both Windows 11 and Windows 10 computers with the same result. QB64 installation method: Download QB64 Phoenix and drag the resultant QB64 folder to C:\. Download Dav's IDE from his website and drag the 2 files into QB64. DavsIDE.ini is produced on running DavsIDE.exe. I hope the problem can be resolved to enable me to use Dav's IDE again. RE: Dav IDE - Dav - 06-03-2022 @RNBW. Wow, thanks for that report. I don't get that error in Win7. Obviously DavsIDE is handling/calling the temp files differently under Win10 & Win11. I will put this bug at the top of the list. I have access to a Win10 tablet to test on. I'm going bug hunting with it! Thanks -- this is the motivation I needed to get back on it. That's two votes for 10pt font. Will do ... - Dav RE: Dav IDE - RNBW - 06-04-2022 I would point out that the IDE worked OK with QB64 V0.5 in both Windows 10 and 11. |