Bitcoin Forum
May 26, 2024, 01:55:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 »
21  Bitcoin / Development & Technical Discussion / Re: How to increase the size of icons in QToolbar? on: January 19, 2019, 09:44:23 AM
Code:
qt/bitcoingui.cpp:563:9: note: suggested alternative: ‘toolbar’
         toolBar->setIconSize(QSize(128, 128));
         ^~~~~~~
         toolbar
As the compiler suggestion suggests, names are case sensitive.

Yeah, I also tried doing that, then it gives the following:

Code:
qt/bitcoingui.cpp: In member function ‘void BitcoinGUI::createToolBars()’:
qt/bitcoingui.cpp:563:37: error: no matching function for call to ‘QToolBar::setIconSize(int, int)’
         toolbar->setIconSize(100,100);
                                     ^
In file included from /root/source_code/depends/i686-w64-mingw32/share/../include/QtWidgets/QToolBar:1:0,
                 from qt/bitcoingui.cpp:61:
/root/source_code/depends/i686-w64-mingw32/share/../include/QtWidgets/qtoolbar.h:170:10: note: candidate: void QToolBar::setIconSize(const QSize&)
     void setIconSize(const QSize &iconSize);
          ^~~~~~~~~~~
/root/source_code/depends/i686-w64-mingw32/share/../include/QtWidgets/qtoolbar.h:170:10: note:   candidate expects 1 argument, 2 provided
Makefile:7546: recipe for target 'qt/qt_libprontoqt_a-bitcoingui.o' failed
make[2]: *** [qt/qt_libprontoqt_a-bitcoingui.o] Error 1
make[2]: Leaving directory '/root/source_code/src'
Makefile:10568: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/root/source_code/src'
Makefile:688: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1

Tried doing "setIconSize(100);" instead of "setIconSize(100,100);" and it gives the same result.
22  Bitcoin / Development & Technical Discussion / Re: How to increase the size of icons in QToolbar? on: January 19, 2019, 08:56:50 AM
This should be set in somewhere here, right?
Yes. Do it right after the toolbar is created.

Hmm, tried couple ways, but then it fails to compile when compiling bitcoingui.o

Running autogen.sh now, but not sure if that could fix the problem.

---

Nope, running autogen.sh did not fix that, still get the following:

Code:
qt/bitcoingui.cpp: In member function ‘void BitcoinGUI::createToolBars()’:
qt/bitcoingui.cpp:563:9: error: ‘toolBar’ was not declared in this scope
         toolBar->setIconSize(QSize(128, 128));
         ^~~~~~~
qt/bitcoingui.cpp:563:9: note: suggested alternative: ‘toolbar’
         toolBar->setIconSize(QSize(128, 128));
         ^~~~~~~
         toolbar
Makefile:7546: recipe for target 'qt/qt_libprontoqt_a-bitcoingui.o' failed
make[2]: *** [qt/qt_libprontoqt_a-bitcoingui.o] Error 1
make[2]: Leaving directory '/root/source_code/src'
Makefile:10568: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/root/source_code/src'
Makefile:688: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1

Tried some other ways:

Quote
qt/bitcoingui.cpp: In member function ‘void BitcoinGUI::createToolBars()’:
qt/bitcoingui.cpp:563:17: error: expected unqualified-id before ‘->’ token
         QToolBar->setIconSize(100,100);
                 ^~
Makefile:7546: recipe for target 'qt/qt_libprontoqt_a-bitcoingui.o' failed
make[2]: *** [qt/qt_libprontoqt_a-bitcoingui.o] Error 1
make[2]: Leaving directory '/root/source_code/src'
Makefile:10568: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/root/source_code/src'
Makefile:688: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1
23  Bitcoin / Development & Technical Discussion / Re: How to increase the size of icons in QToolbar? on: January 19, 2019, 12:10:53 AM
Ah, I was mistaken. You are using the QIcon class for your icons. The size of the displayed icon is determined by the current active style. For a QToolbar, the size of an icon is default to 24x24. You can change this by using QToolBar::setIconSize(). I think that should work.

Thank you!

This should be set in somewhere here, right?

24  Bitcoin / Development & Technical Discussion / Re: How to increase the size of icons in QToolbar? on: January 18, 2019, 10:53:23 PM
Hi. Thanks for the answer. Yes, I'm using 128x128 PNG actually. Also, I've noticed that even the standard PNG's are 32x32, while when the wallet is opened, it's 24x24, no matter what size PNG you have in the folder.
25  Bitcoin / Development & Technical Discussion / How to increase the size of icons in QToolbar? on: January 18, 2019, 10:04:56 PM
Maybe anyone will know, how do I increase the icon size on QToolbar?

I've found how to remove the text and I want to see a bit bigger icons. I've done some changes, but only the toolbar itself has grown in size. Icons of QToolbar stay at 24x24 px. I tried searching the code, but I just couldn't find it... Maybe anyone knows?

26  Bitcoin / Development & Technical Discussion / Re: Do I need to compile a wallet each time I do changes to it? on: January 18, 2019, 04:57:55 PM
Hi. I was wondering if there's any faster way to see how the wallet is looking like / functioning, than compiling it each time after changes?
Hi,

after changes to what ? If you make some changes to the code then you need to recompile in order to apply them to the binary you execute (the software).

I'm talking more of a graphical changes, such as changed icons, font change, icon placements and etc. As I understand that should be possible to do with QT Creator, but I'm unable to load the project somewhy.
27  Bitcoin / Development & Technical Discussion / Do I need to compile a wallet each time I do changes to it? on: January 18, 2019, 03:25:20 PM
Hi. I was wondering if there's any faster way to see how the wallet is looking like / functioning, than compiling it each time after changes?
28  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 18, 2019, 01:50:10 PM



Got an answer from Graviex that they would list us for 0.4 BTC or 4M GIO. If there's anyone who would like to purchase masternodes or to give a donation, please let me know!



29  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 18, 2019, 01:10:16 PM



OFFICIAL WEBSITE DEVELOPMENT IN PROGRESS!

SELLING MASTERNODES! PRICE: 1000 PRONTO (0.025 BTC). CONTACT VIA PM, DISCORD (SBDomains#7921) OR TELEGRAM (SBDomains)!



30  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 18, 2019, 10:05:35 AM
-
31  Alternate cryptocurrencies / Bounties (Altcoins) / AIRDROP! 10 PRONTO JUST FOR A WALLET DOWNLOAD! on: January 17, 2019, 08:04:59 AM


PRONTO (https://bitcointalk.org/index.php?topic=5097220) IS OFFERING 10 PRONTO JUST FOR DOWNLOADING A WALLET:

1. DOWNLOAD PRONTO WALLET FROM ANN THREAD (https://bitcointalk.org/index.php?topic=5097220)

2. FILL IN THE GOOGLE FORM: https://docs.google.com/forms/d/e/1FAIpQLSdUXCDSN_GgZO0IGiLZ8Q_9-gcjuOlRNpLVsd8EzGr_9DVARg/viewform?usp=sf_link

3. YOU MUST POST "I'M IN!" HERE IN THIS THREAD, IF YOU WON'T POST IT, THE AIRDROP WON'T BE SENT!



32  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 16, 2019, 10:10:53 PM



Sneak peek at the upcoming website!




33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 16, 2019, 08:47:45 PM
Thanks. How many coins do we need to run masternode?

Thanks for the question. Price of 1 masternode is only 1000 PRONTO (BTC0.025).
34  Alternate cryptocurrencies / Bounties (Altcoins) / Re: [BOUNTY] 25,000 PRONTO GIVEAWAY | EARN 25 PRONTO JUST FOR FOLLOWING ! on: January 16, 2019, 08:20:22 PM
Bounties have been sent out!
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 16, 2019, 08:04:38 PM
Can you post a list of nodes?

Sure thing, here's a list of currently active masternodes!

173.212.195.20:5238
35.195.228.33:5238
81.4.102.177:5238
178.238.230.21:5238
23.94.145.123:5238
167.160.189.148:5238
192.227.185.200:5238
23.94.145.115:5238
172.245.133.235:5238
178.134.36.66:5238
35.241.167.179:5238
185.246.155.85:5238
104.223.96.133:5238
198.50.205.246:5238
92.241.82.10:5238
31.146.158.2:5238
64.52.163.118:5238
185.222.58.77:5238
212.186.240.54:5238
5.189.179.97:5238
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 16, 2019, 04:51:00 PM



STARTED THE DEVELOPMENT OF OFFICIAL WEBSITE TODAY. SHOULD BE COMPLETE IN ABOUT A WEEK. Smiley




37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 15, 2019, 01:50:41 PM
SORRY, ACCIDENTAL POST, YOU CAN REMOVE THIS ONE *
38  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 15, 2019, 12:09:56 PM

BLOCK EXPLORER ADDED!


                  

39  Alternate cryptocurrencies / Bounties (Altcoins) / 1 PRONTO JUST FOR DOWNLOADING A WALLET on: January 15, 2019, 09:08:19 AM



PRONTO (https://bitcointalk.org/index.php?topic=5097220) IS OFFERING 1 PRONTO JUST FOR DOWNLOADING A WALLET:

1. DOWNLOAD PRONTO WALLET FROM ANN THREAD (https://bitcointalk.org/index.php?topic=5097220)

2. FILL IN THE GOOGLE FORM: https://docs.google.com/forms/d/e/1FAIpQLSdUXCDSN_GgZO0IGiLZ8Q_9-gcjuOlRNpLVsd8EzGr_9DVARg/viewform?usp=sf_link

3. ENJOY YOUR 1 PRONTO!



40  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] !! PRONTO - PROFIT ORIENTED DASH FORK! MASTERNODES / INSTANT & PRIVATE !! on: January 14, 2019, 11:43:48 PM




GPUHASH.ORG ADDED TO THE MAIN ANN POST MINING POOLS LIST!




Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!