Bitcoin Forum
May 03, 2024, 06:18:24 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 [87] 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 ... 249 »
  Print  
Author Topic: ◈◈Bitcredit ◈◈ Migrating to UniQredit◈◈  (Read 284487 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 20, 2015, 07:28:13 PM
 #1721

while i wait for consultation on some stuff, gonna work on the qt all night, seems unfair that i'd leave novices the whole job.

let's see what i can do in a night  Wink

would be nice if you guys would comment on the changes as they occur in case you disagree with some of the changes

i'll be uploading changes on the hour.

In order to get the maximum amount of activity points possible, you just need to post once per day on average. Skipping days is OK as long as you maintain the average.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714760304
Hero Member
*
Offline Offline

Posts: 1714760304

View Profile Personal Message (Offline)

Ignore
1714760304
Reply with quote  #2

1714760304
Report to moderator
starblocks
Hero Member
*****
Offline Offline

Activity: 1344
Merit: 502



View Profile
April 20, 2015, 07:36:00 PM
 #1722

would be nice if you guys would comment on the changes as they occur in case you disagree with some of the changes

I'd have to say that I'd be more than happy for you to indulge in all the creative imagination you choose in this aspect, yet feedback from more savvy programmer wise types - i'll that up to those capable

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 20, 2015, 09:23:11 PM
 #1723

while i wait for consultation on some stuff, gonna work on the qt all night, seems unfair that i'd leave novices the whole job.

let's see what i can do in a night  Wink

would be nice if you guys would comment on the changes as they occur in case you disagree with some of the changes

i'll be uploading changes on the hour.

 Smiley

I was playing a bit more today, and found that...

1. commenting out the current setStyleSheet line in bitcreditgui.cpp and replacing it with:
    QFile qss(":/css/stylesheet");
    qss.open(QFile::ReadOnly);
    qApp->setStyleSheet(qss.readAll());
    qss.close();

2. adding the following to bitcredit.qrc:
    <qresource prefix="/css">
        <file alias="stylesheet">res/css/stylesheet.qss</file>
    </qresource>

3. deleting all the individual widget-specific stylesheet stuff in all the form.ui files

...means you can stick one 'stylesheet.qss' file in /src/qt/res/css/ ...and spend a whole lot less time buggering about in QT Designer...  Cheesy

This is a nice stylesheet that I was modifying, was quite a good fit for what I'd been doing: http://www.yasinuludag.com/darkorange.stylesheet

Anyway, I'm sure you know how to do all this far better than I do, have fun!  Grin
bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 20, 2015, 09:41:40 PM
 #1724

while i wait for consultation on some stuff, gonna work on the qt all night, seems unfair that i'd leave novices the whole job.

let's see what i can do in a night  Wink

would be nice if you guys would comment on the changes as they occur in case you disagree with some of the changes

i'll be uploading changes on the hour.

 Smiley

I was playing a bit more today, and found that...

1. commenting out the current setStyleSheet line in bitcreditgui.cpp and replacing it with:
    QFile qss(":/css/stylesheet");
    qss.open(QFile::ReadOnly);
    qApp->setStyleSheet(qss.readAll());
    qss.close();

2. adding the following to bitcredit.qrc:
    <qresource prefix="/css">
        <file alias="stylesheet">res/css/stylesheet.qss</file>
    </qresource>

3. deleting all the individual widget-specific stylesheet stuff in all the form.ui files

...means you can stick one 'stylesheet.qss' file in /src/qt/res/css/ ...and spend a whole lot less time buggering about in QT Designer...  Cheesy

This is a nice stylesheet that I was modifying, was quite a good fit for what I'd been doing: http://www.yasinuludag.com/darkorange.stylesheet

Anyway, I'm sure you know how to do all this far better than I do, have fun!  Grin

way ahead of you mate

https://github.com/bitcreditscc/bicreditsnew/tree/0.30.16.7-voting/src/qt/res

I'm just going to do most of the background stuff then you guys acn work on the actual look.

may even add sound notifications if i can figure it out

bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 20, 2015, 09:48:32 PM
 #1725

while i wait for consultation on some stuff, gonna work on the qt all night, seems unfair that i'd leave novices the whole job.

let's see what i can do in a night  Wink

would be nice if you guys would comment on the changes as they occur in case you disagree with some of the changes

i'll be uploading changes on the hour.

 Smiley

I was playing a bit more today, and found that...

1. commenting out the current setStyleSheet line in bitcreditgui.cpp and replacing it with:
    QFile qss(":/css/stylesheet");
    qss.open(QFile::ReadOnly);
    qApp->setStyleSheet(qss.readAll());
    qss.close();

2. adding the following to bitcredit.qrc:
    <qresource prefix="/css">
        <file alias="stylesheet">res/css/stylesheet.qss</file>
    </qresource>

3. deleting all the individual widget-specific stylesheet stuff in all the form.ui files

...means you can stick one 'stylesheet.qss' file in /src/qt/res/css/ ...and spend a whole lot less time buggering about in QT Designer...  Cheesy

This is a nice stylesheet that I was modifying, was quite a good fit for what I'd been doing: http://www.yasinuludag.com/darkorange.stylesheet

Anyway, I'm sure you know how to do all this far better than I do, have fun!  Grin

why don't you get started on that while i also work on other areas , then we merge our work?

right now i'm concerned mostly with functions , and if you clone the branch i'm working off, then we can cover more ground tonight

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 20, 2015, 09:56:57 PM
 #1726

may even add sound notifications if i can figure it out

As long as they have an OFF switch!  Smiley

I'll have another crack tomorrow, I know how to get things changed a whole lot faster now.

bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 20, 2015, 10:00:01 PM
 #1727

may even add sound notifications if i can figure it out

As long as they have an OFF switch!  Smiley

I'll have another crack tomorrow, I know how to get things changed a whole lot faster now.



great!!

running final tests on the syncing issues while i work on qt. i'll provide a report on my findings in a few hours

dbt1033
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
April 21, 2015, 01:35:27 AM
 #1728

How goes it my BCR brothers?

Just popping in to say hello.

Got to make money in the alt market to inject into my true love <3

It's great to see everyone coming together to work on this project.

I get more and more excited every day.

Thank you to you all Smiley
bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 21, 2015, 03:01:48 AM
 #1729

Syncing issue at block 40000 was a result of bad placing of verification code. It was rejecting a specific transition block because it did not meet the requirements.

Next i will be instituting new rules for protocol version 70008 that will perform similar check for BN payments.

The new stats engine is much larger and far more advanced as i learned how to manipulate more data off the blockchain.

I've also made some Qt updates and will continue this week to improve upon existing code.

This "tock" phase has an update due in just over a week , so expect a lot of updates and one or two release candidates.

bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 21, 2015, 08:21:36 PM
 #1730

if you are building off the git, you need to install qtwebkit

bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 22, 2015, 11:12:40 AM
 #1731

This is far as i can take QT work for now. Looks less cluttered, but needs work.

i have included previous pulls form other community members so we have a clearer idea of how far we are.

I am switching back to base code, as we have only 8 days left to scheduled update.

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 22, 2015, 11:24:09 AM
Last edit: April 22, 2015, 12:11:31 PM by thelonecrouton
 #1732

Have moved all styling elements including the main window menu/toolbars and toolstripe into the stylesheet.qss file. Not finished yet but everything now in one place makes future theming very easy.
bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 22, 2015, 01:41:34 PM
 #1733

Have moved all styling elements including the main window menu/toolbars and toolstripe into the stylesheet.qss file. Not finished yet but everything now in one place makes future theming very easy.

looking into it now

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 22, 2015, 01:59:13 PM
 #1734

Have moved all styling elements including the main window menu/toolbars and toolstripe into the stylesheet.qss file. Not finished yet but everything now in one place makes future theming very easy.

looking into it now

Bugger, just looked at the pull request I did and it didn't include the actual stylesheet. Joys of senility!

Uploaded it here: http://s000.tinyupload.com/?file_id=28046410783817782264     (Can't wrangle with git right now.) 

Will post some pics later and see what people think.
bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 22, 2015, 02:02:22 PM
 #1735

Have moved all styling elements including the main window menu/toolbars and toolstripe into the stylesheet.qss file. Not finished yet but everything now in one place makes future theming very easy.

so then.....apparently we can make copious use of qss, java script and ui to make amazing interface. Seems we'll be having fun with this a lot in our spare time

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 22, 2015, 02:48:53 PM
 #1736

so then.....apparently we can make copious use of qss, java script and ui to make amazing interface. Seems we'll be having fun with this a lot in our spare time


If you're taking the piss you'll have to do better than that. I am thick skinned and relentless.   Tongue

 Cheesy
bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 22, 2015, 02:57:39 PM
 #1737

 Smiley

playing around with what you did, interesting possibilities. with style sheets and java , we could turn this into something really different.

The boring part is going to be rooting out the individual styling in the .ui forms and making them rely on the stylesheet, though once that is done, we can then have a situation where users can pick a stylesheet at the start of every session.

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 22, 2015, 03:02:18 PM
 #1738

The boring part is going to be rooting out the individual styling in the .ui forms and making them rely on the stylesheet, though once that is done, we can then have a situation where users can pick a stylesheet at the start of every session.

Mostly all done at my end, I just suck at using git. What's wrong with rsync anyway?  Grin


Don't worry about the grey/orange folks, a few find/replace ops can change it all:



Subsidiary dialogs are all taken care of, eg:

bitcreditscc (OP)
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
April 22, 2015, 07:46:15 PM
 #1739


Work in progress

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
April 22, 2015, 08:50:11 PM
 #1740

Toolstripe looks far better without all the item padding.  Smiley
Pages: « 1 ... 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 [87] 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 ... 249 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!