Re: [GNC] feature request, select all on reconcille

2018-05-20 Thread Frank H. Ellenberger
Hi,

Am 19.05.2018 um 22:05 schrieb Geert Janssens:
:
>> Do you think the 'select all' should be a menu item in a drop down (say the
>> reconcile top level menu?) or on the menu bar as a stand alone button?
>>
> I would prefer to add it to the reconcile top level menu.

Because it is a standard edit key, it should reside in the top level
edit menu. And it should become disabled in contexts, where it is not
available.

~Frank
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] feature request, select all on reconcille

2018-05-19 Thread Dennis Powless
I've looked over window-reconcile.c and see the section on the menus.

Odd question, how do I actually learn how to do this.  I've read up on gtk,
glade and see in the code where the menu items are coded.

Do I edit the actual file via gedit (geany) or do I use glade?  I'm sure I
can learn the language to edit the file, but is there another easier way,
seems glade would be this?

Do you think the 'select all' should be a menu item in a drop down (say the
reconcile top level menu?) or on the menu bar as a stand alone button?

Maybe point me in the correct location to discuss this?  I know it's a
steep learning curve, but I do have some experience with doing code, just
not this language.

I want to help out with this project and feel I can do some things to help
out once I figure some of it out.



Dennis

On Fri, May 18, 2018 at 10:57 AM, Dennis Powless 
wrote:

> I did not know that, however the ctr-A is a well-known keystroke combo.
>
> I’ll do some reading :)
>
> D
>
> Sent from my iPhone
>
> > On May 18, 2018, at 8:12 AM, Geert Janssens 
> wrote:
> >
> > Op vrijdag 18 mei 2018 13:10:24 CEST schreef Dennis Powless:
> >> I would like to suggest a feature request.  I would be willing to learn
> how
> >> to do it if someone could point me in the right direction on how to
> >> accomplish this.  Would love to learn how to work with GN.  I'll give
> it a
> >> go.
> >>
> >> Would love to have a select all option for the account reconcile.  I
> have
> >> to un-click all the entries before I reconcile.  Have the button I can
> >> click would help a lot.
> >>
> > How about selecting one line and then clicking ctrl-A ?
> > That should select all of them. If you then want all of them to be
> reconciled,
> > select ctrl-R.
> >
> > I realize ctrl-A is a hidden feature. It's not in the reconcile window's
> > menus. So yes, that might be an improvement.
> >
> > To add it you'll need some knowledge of gtk's event model, gtk widgets,
> menus
> > and actions, the gtkbuilder format ("glade") and how to tie callbacks to
> menu
> > actions. The code for the reconcile dialog itself can be found in
> https://
> > github.com/Gnucash/gnucash/blob/maint/gnucash/gnome/window-reconcile.c
> >
> > Regards,
> >
> > Geert
> >
> >
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] feature request, select all on reconcille

2018-05-18 Thread Dennis Powless
I did not know that, however the ctr-A is a well-known keystroke combo.

I’ll do some reading :)

D

Sent from my iPhone

> On May 18, 2018, at 8:12 AM, Geert Janssens  
> wrote:
> 
> Op vrijdag 18 mei 2018 13:10:24 CEST schreef Dennis Powless:
>> I would like to suggest a feature request.  I would be willing to learn how
>> to do it if someone could point me in the right direction on how to
>> accomplish this.  Would love to learn how to work with GN.  I'll give it a
>> go.
>> 
>> Would love to have a select all option for the account reconcile.  I have
>> to un-click all the entries before I reconcile.  Have the button I can
>> click would help a lot.
>> 
> How about selecting one line and then clicking ctrl-A ?
> That should select all of them. If you then want all of them to be 
> reconciled, 
> select ctrl-R.
> 
> I realize ctrl-A is a hidden feature. It's not in the reconcile window's 
> menus. So yes, that might be an improvement.
> 
> To add it you'll need some knowledge of gtk's event model, gtk widgets, menus 
> and actions, the gtkbuilder format ("glade") and how to tie callbacks to menu 
> actions. The code for the reconcile dialog itself can be found in https://
> github.com/Gnucash/gnucash/blob/maint/gnucash/gnome/window-reconcile.c
> 
> Regards,
> 
> Geert
> 
> 
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] feature request, select all on reconcille

2018-05-18 Thread Geert Janssens
Op vrijdag 18 mei 2018 13:10:24 CEST schreef Dennis Powless:
> I would like to suggest a feature request.  I would be willing to learn how
> to do it if someone could point me in the right direction on how to
> accomplish this.  Would love to learn how to work with GN.  I'll give it a
> go.
> 
> Would love to have a select all option for the account reconcile.  I have
> to un-click all the entries before I reconcile.  Have the button I can
> click would help a lot.
> 
How about selecting one line and then clicking ctrl-A ?
That should select all of them. If you then want all of them to be reconciled, 
select ctrl-R.

I realize ctrl-A is a hidden feature. It's not in the reconcile window's 
menus. So yes, that might be an improvement.

To add it you'll need some knowledge of gtk's event model, gtk widgets, menus 
and actions, the gtkbuilder format ("glade") and how to tie callbacks to menu 
actions. The code for the reconcile dialog itself can be found in https://
github.com/Gnucash/gnucash/blob/maint/gnucash/gnome/window-reconcile.c

Regards,

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] feature request, select all on reconcille

2018-05-18 Thread Dennis Powless
I would like to suggest a feature request.  I would be willing to learn how
to do it if someone could point me in the right direction on how to
accomplish this.  Would love to learn how to work with GN.  I'll give it a
go.

Would love to have a select all option for the account reconcile.  I have
to un-click all the entries before I reconcile.  Have the button I can
click would help a lot.

Dennis
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.