GitQlient – a multi-platform GUI-oriented Git client written with Qt
francescmm.github.io
GitQlient – a multi-platform GUI-oriented Git client written with Qt
1–10 of 66 posts
Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#2Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#3Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#4Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#5 - naming things (e.g. should signals/slots be prefixed (sigFoo() -> onFooBared())
- how to deal with signal functions actually not implemented (clang-tidy warnings)
- how to break up large main window classes in a reasonable manner
and so on. Typically I immerse myself in one of the larger code bases I'm aware of (Android, Firefox, Chromium, Tensorflow, and some others) and regularly discover pretty useful patterns I can make use of. However, I was unlucky to find something for Qt based.Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#6Great work! I'll be recommending this to anyone who is looking for a git GUI client.
Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#7Is anyone aware of a publicly available code base to look into when searching for high quality Qt-based (desktop) applications? Think chromium-quality software quality code base. I am looking for inspiring patterns and also things such as naming schemes as I regularly change my mind when it comes to developing Qt based applications with regard to: - naming things (e.g. should signals/slots be prefixed (sigFoo() -> on…
Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#8Is anyone aware of a publicly available code base to look into when searching for high quality Qt-based (desktop) applications? Think chromium-quality software quality code base. I am looking for inspiring patterns and also things such as naming schemes as I regularly change my mind when it comes to developing Qt based applications with regard to: - naming things (e.g. should signals/slots be prefixed (sigFoo() -> on…
Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#9Is anyone aware of a publicly available code base to look into when searching for high quality Qt-based (desktop) applications? Think chromium-quality software quality code base. I am looking for inspiring patterns and also things such as naming schemes as I regularly change my mind when it comes to developing Qt based applications with regard to: - naming things (e.g. should signals/slots be prefixed (sigFoo() -> on…
Re: GitQlient – a multi-platform GUI-oriented Git client written with Qt
#10Is anyone aware of a publicly available code base to look into when searching for high quality Qt-based (desktop) applications? Think chromium-quality software quality code base. I am looking for inspiring patterns and also things such as naming schemes as I regularly change my mind when it comes to developing Qt based applications with regard to: - naming things (e.g. should signals/slots be prefixed (sigFoo() -> on…
Qt itself, like for example https://github.com/qt/qttools ?
connect(contextShortcut, SIGNAL(activated()), this, SLOT(showContextDock()));
connect(m_messageView->selectionModel(),
SIGNAL(currentColumnChanged(QModelIndex,QModelIndex)),
SLOT(updateLatestModel(QModelIndex)));
Taken from https://github.com/qt/qttools/blob/7ec161d6f/src/linguist/li...