Re: [go-nuts] help w/ therecipe/qt

2020-03-01 Thread rob
Yes, thanks Justin.  It looks that's just what I need. --rob On 3/1/20 3:16 PM, Justin Israel wrote: On Mon, Mar 2, 2020 at 6:48 AM rob > wrote: The exact problem is one of the first in chapter 4 MainWindow::MainWindow() {     setWindowTitle("

Re: [go-nuts] help w/ therecipe/qt

2020-03-01 Thread Justin Israel
On Mon, Mar 2, 2020 at 6:48 AM rob wrote: > The exact problem is one of the first in chapter 4 > > MainWindow::MainWindow() > { > setWindowTitle("SRM System"); > setFixedSize(500, 500); > QPixmap newIcon("new.png"); > QPixmap openIcon("open.png"); > QPixmap closeIcon("close.pn

Re: [go-nuts] help w/ therecipe/qt

2020-03-01 Thread rob
The exact problem is one of the first in chapter 4 MainWindow::MainWindow() {    setWindowTitle("SRM System");    setFixedSize(500, 500);    QPixmap newIcon("new.png");    QPixmap openIcon("open.png");    QPixmap closeIcon("close.png");    // Setup File Menu    fileMenu = menuBar()->addMenu("&Fi

[go-nuts] help w/ therecipe/qt

2020-02-29 Thread Justin Israel
You are likely to get the most focused support by checking with the project: https://github.com/therecipe/qt/blob/master/README.md Maybe asking on their slack channel if you can't figure it out from the Qt docs + therecipe/qt api? -- You received this message because you are subscribed to the

Re: [go-nuts] help w/ therecipe/qt

2020-02-29 Thread rob
"Getting Started w/ Qt 5," by Benjamin Baka.  Published by Packtpub On 2/29/20 2:55 PM, Rob Muhlestein wrote: Hi there Rob, would you mind sharing that book so I can share it with people on my rwxrob.live stream. I like the idea of doing what you are doing. I might be able to help you past th

[go-nuts] help w/ therecipe/qt

2020-02-29 Thread rob
Hi.  I'm trying to learn therecipe/qt by working my way thru a book using C++ examples and translating them into Go.  I'm stuck at QKeySequence stuff. My computer runs ubuntu 18.04, and I installed Go 1.13.8 on it, along w/ all the Qt development stuff from qt.io, and therecipe/qt. Where are