* [rust-dev] Recommendations for a GUI toolkit for rust
@ 2014-11-25 6:42 Prasoon Shukla
2014-11-25 17:53 ` Gaetan
0 siblings, 1 reply; 4+ messages in thread
From: Prasoon Shukla @ 2014-11-25 6:42 UTC (permalink / raw)
To: rust-dev
[-- Attachment #1: Type: text/plain, Size: 786 bytes --]
Hey all
I have been thinking of making a small text editor, with emacs-like
fundamentals, as a way learning rust this winter break. I need a GUI
toolkit for this, of course. So, I searched for it and found this page:
https://github.com/kud1ing/awesome-rust
This page gives a few choices to me and since everything is alpha right now
(both the language and the toolkits), I don't know which one to choose. As
a reference, I have used GTK+ before and so, I could probably use it again
<https://github.com/JeremyLetang/rgtk>. However, my primary concern is that
the toolkit I use would stop active development - I don't want to have to
port everything to another toolkit later on. So, if any project shows
promise of continuing, please suggest it to me.
Thank you.
ᐧ
[-- Attachment #2: Type: text/html, Size: 1233 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [rust-dev] Recommendations for a GUI toolkit for rust
2014-11-25 6:42 [rust-dev] Recommendations for a GUI toolkit for rust Prasoon Shukla
@ 2014-11-25 17:53 ` Gaetan
2014-11-26 4:41 ` Prasoon Shukla
2014-11-28 12:50 ` Robert Knight
0 siblings, 2 replies; 4+ messages in thread
From: Gaetan @ 2014-11-25 17:53 UTC (permalink / raw)
To: Prasoon Shukla; +Cc: rust-dev
[-- Attachment #1: Type: text/plain, Size: 1160 bytes --]
To my opinion qt is far better, more portable, more easy to work with, but
binding qt on rust is quite a challenge.
I think binding gtk3 is much easier, however I don't think there is any
project ready for production yet.
Le mardi 25 novembre 2014, Prasoon Shukla <prasoon92.iitr@gmail.com> a
écrit :
> Hey all
>
> I have been thinking of making a small text editor, with emacs-like
> fundamentals, as a way learning rust this winter break. I need a GUI
> toolkit for this, of course. So, I searched for it and found this page:
> https://github.com/kud1ing/awesome-rust
>
> This page gives a few choices to me and since everything is alpha right
> now (both the language and the toolkits), I don't know which one to choose.
> As a reference, I have used GTK+ before and so, I could probably use it
> again <https://github.com/JeremyLetang/rgtk>. However, my primary concern
> is that the toolkit I use would stop active development - I don't want to
> have to port everything to another toolkit later on. So, if any project
> shows promise of continuing, please suggest it to me.
>
> Thank you.
> ᐧ
>
--
-----
Gaetan
[-- Attachment #2: Type: text/html, Size: 1853 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [rust-dev] Recommendations for a GUI toolkit for rust
2014-11-25 17:53 ` Gaetan
@ 2014-11-26 4:41 ` Prasoon Shukla
2014-11-28 12:50 ` Robert Knight
1 sibling, 0 replies; 4+ messages in thread
From: Prasoon Shukla @ 2014-11-26 4:41 UTC (permalink / raw)
To: Gaetan; +Cc: rust-dev
[-- Attachment #1: Type: text/plain, Size: 1454 bytes --]
Oh well. I ended up using conrod (https://github.com/PistonDevelopers/conrod)
for this, primarily because I need access to the underlying data model for
the text.
ᐧ
On Tue, Nov 25, 2014 at 11:23 PM, Gaetan <gaetan@xeberon.net> wrote:
> To my opinion qt is far better, more portable, more easy to work with, but
> binding qt on rust is quite a challenge.
>
> I think binding gtk3 is much easier, however I don't think there is any
> project ready for production yet.
>
>
> Le mardi 25 novembre 2014, Prasoon Shukla <prasoon92.iitr@gmail.com> a
> écrit :
>
> Hey all
>>
>> I have been thinking of making a small text editor, with emacs-like
>> fundamentals, as a way learning rust this winter break. I need a GUI
>> toolkit for this, of course. So, I searched for it and found this page:
>> https://github.com/kud1ing/awesome-rust
>>
>> This page gives a few choices to me and since everything is alpha right
>> now (both the language and the toolkits), I don't know which one to choose.
>> As a reference, I have used GTK+ before and so, I could probably use it
>> again <https://github.com/JeremyLetang/rgtk>. However, my primary
>> concern is that the toolkit I use would stop active development - I don't
>> want to have to port everything to another toolkit later on. So, if any
>> project shows promise of continuing, please suggest it to me.
>>
>> Thank you.
>> ᐧ
>>
>
>
> --
> -----
> Gaetan
>
>
>
[-- Attachment #2: Type: text/html, Size: 2829 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [rust-dev] Recommendations for a GUI toolkit for rust
2014-11-25 17:53 ` Gaetan
2014-11-26 4:41 ` Prasoon Shukla
@ 2014-11-28 12:50 ` Robert Knight
1 sibling, 0 replies; 4+ messages in thread
From: Robert Knight @ 2014-11-28 12:50 UTC (permalink / raw)
To: Gaetan; +Cc: rust-dev, Prasoon Shukla
[-- Attachment #1: Type: text/plain, Size: 2072 bytes --]
> However, my primary concern is that the toolkit I use would stop active
development - I don't want to have to port everything to another toolkit
later on.
> So, if any project shows promise of continuing, please suggest it to me.
Both Qt and GTK+ have been around for a long time and are actively used in
a lot of software. GTK+ has had lulls in its development in the past and
Qt's development
focus is dependent on who the majority of Digia's customers are, so neither
is risk free but both are probably reasonably safe.
Another alternative would be to use a browser as the UI and implement the
bulk of the logic in Rust.
On 25 November 2014 at 17:53, Gaetan <gaetan@xeberon.net> wrote:
> To my opinion qt is far better, more portable, more easy to work with, but
> binding qt on rust is quite a challenge.
>
> I think binding gtk3 is much easier, however I don't think there is any
> project ready for production yet.
>
>
> Le mardi 25 novembre 2014, Prasoon Shukla <prasoon92.iitr@gmail.com> a
> écrit :
>
> Hey all
>>
>> I have been thinking of making a small text editor, with emacs-like
>> fundamentals, as a way learning rust this winter break. I need a GUI
>> toolkit for this, of course. So, I searched for it and found this page:
>> https://github.com/kud1ing/awesome-rust
>>
>> This page gives a few choices to me and since everything is alpha right
>> now (both the language and the toolkits), I don't know which one to choose.
>> As a reference, I have used GTK+ before and so, I could probably use it
>> again <https://github.com/JeremyLetang/rgtk>. However, my primary
>> concern is that the toolkit I use would stop active development - I don't
>> want to have to port everything to another toolkit later on. So, if any
>> project shows promise of continuing, please suggest it to me.
>>
>> Thank you.
>> ᐧ
>>
>
>
> --
> -----
> Gaetan
>
>
>
> _______________________________________________
> Rust-dev mailing list
> Rust-dev@mozilla.org
> https://mail.mozilla.org/listinfo/rust-dev
>
>
[-- Attachment #2: Type: text/html, Size: 3297 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-11-28 12:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-25 6:42 [rust-dev] Recommendations for a GUI toolkit for rust Prasoon Shukla
2014-11-25 17:53 ` Gaetan
2014-11-26 4:41 ` Prasoon Shukla
2014-11-28 12:50 ` Robert Knight
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox