*** rashm2k has quit IRC | 00:22 | |
Lava_Croft | lols http://www.zdnet.com/why-intel-should-buy-nokia-7000002054/ | 00:28 |
---|---|---|
*** clau has quit IRC | 00:40 | |
*** virtuald has quit IRC | 01:05 | |
*** e-yes has quit IRC | 01:09 | |
*** virtuald has joined #harmattan | 01:10 | |
*** sigmaorion has joined #harmattan | 01:14 | |
*** rashm2k has joined #harmattan | 01:16 | |
*** heymaster-laptop has quit IRC | 01:18 | |
piggz | is it possible to add extra spacing above a specific item in a QML column? | 01:18 |
ajalkane | piggz: My instinct claims that the column's height is sized to fit all the items in it | 01:20 |
ajalkane | Sorry... misunderstood | 01:21 |
ajalkane | You can just put an intermediate item in there to have any spacing you want. An otherwise invisible Item element for example | 01:22 |
piggz | ajalkane: yes, thats what ive done...feels more like a workaround though | 01:24 |
ajalkane | piggz: I know of no better way. You can of course try to play with anchor's margins if you want to. | 01:25 |
ajalkane | But if I remember correctly that approach doesn't work well with Columns/Rows... but might remember wrong so let me know, I'm interested too :) | 01:26 |
*** nid0 has quit IRC | 01:26 | |
piggz | yeah, but i dont think items in a column can have top or bottom anchors | 01:26 |
*** mschlens has quit IRC | 01:27 | |
ajalkane | I was thinking about topMargin for example, anchors.top doesn't work of course. In theory topMargin could work, but like I said my memory seems to claim there was problems with that... | 01:28 |
piggz | i tried otp margin, and it was ignored | 01:28 |
ajalkane | ah... so... behold the ugly solution, it be your only salvation. | 01:29 |
ajalkane | I swear, that's the last coding poem I'll write tonight. | 01:30 |
ajalkane | Damn flu is hitting me down with a hammer. | 01:30 |
*** mschlens has joined #harmattan | 01:30 | |
*** heymaster has joined #harmattan | 01:43 | |
*** e-yes has joined #harmattan | 01:46 | |
*** heymaste_ has joined #harmattan | 01:48 | |
*** heymast__ has joined #harmattan | 01:48 | |
*** heymaster has quit IRC | 01:51 | |
*** ajalkane has quit IRC | 01:52 | |
*** Enforcer has quit IRC | 02:08 | |
*** hardaker has joined #harmattan | 02:13 | |
*** Enforcer has joined #harmattan | 02:13 | |
*** hardaker has quit IRC | 02:17 | |
*** hardaker has joined #harmattan | 02:18 | |
*** GeneralAntilles1 is now known as GeneralAntilles | 02:19 | |
*** hardaker has quit IRC | 02:28 | |
*** piggz has quit IRC | 02:28 | |
*** hardaker has joined #harmattan | 02:28 | |
*** natunen has quit IRC | 02:34 | |
*** M4rtinK has quit IRC | 02:47 | |
*** messerting has quit IRC | 02:54 | |
*** beford has quit IRC | 02:55 | |
*** mike7b4 has quit IRC | 03:00 | |
*** facefox_com has quit IRC | 03:01 | |
*** gabriel9 has joined #harmattan | 03:04 | |
pa | whats wrong with onPressedChanged: { if (pressed) console.log("pressed"); else console.log("released"); } ? | 03:12 |
pa | i get "pressed" printed twice.. | 03:12 |
pa | but on another button this works.. | 03:16 |
pa | apparently it+s the name of the function | 03:16 |
pa | lame.. | 03:16 |
*** hardaker has quit IRC | 03:21 | |
*** mike7b4 has joined #harmattan | 03:23 | |
*** jaywink has joined #harmattan | 03:24 | |
rashm2k | i keep getting seg faults on Qlist.h append method any ideas? | 03:33 |
rashm2k | template <typename T> | 03:33 |
rashm2k | Q_OUTOFLINE_TEMPLATE void QList<T>::append(const T &t) | 03:33 |
rashm2k | { | 03:33 |
rashm2k | if (d->ref != 1) { | 03:33 |
rashm2k | Node *n = detach_helper_grow(INT_MAX, 1); | 03:33 |
rashm2k | QT_TRY { | 03:33 |
rashm2k | node_construct(n, t); | 03:33 |
rashm2k | } QT_CATCH(...) { | 03:33 |
rashm2k | --d->end; | 03:33 |
rashm2k | QT_RETHROW; | 03:33 |
rashm2k | } | 03:33 |
rashm2k | } | 03:33 |
rashm2k | at line: if (d->ref != 1) { | 03:34 |
ieatlint | uh, first, use something like pastebin | 03:35 |
rashm2k | sorry | 03:35 |
ieatlint | and second.. it's not QList's fault that there's a segfault, so posting a code snippet from it will tell people nothing | 03:35 |
rashm2k | QList<SearchResult*> *searchResultList; | 03:36 |
rashm2k | void ListModel::appendRows(SearchResult *items) { | 03:36 |
rashm2k | searchResultList->append(items); | 03:36 |
rashm2k | } | 03:36 |
itsnotabigtruck | rashm2k: don't paste that much text into irc | 03:37 |
itsnotabigtruck | what happens is that one line goes through at a time for minutes | 03:37 |
rashm2k | ???? | 03:37 |
ieatlint | uh, in your second code snippet, searchResultList is undefined | 03:37 |
ieatlint | you should actually be getting a compile warning telling you that | 03:37 |
itsnotabigtruck | ah, that must be it | 03:38 |
itsnotabigtruck | this == NULL | 03:38 |
rashm2k | how do I instantiate a Qlist? It tells me it's static | 03:38 |
itsnotabigtruck | well, the quick fix is to take out the * before searchResultList | 03:39 |
ieatlint | well, you can put it on the stack | 03:39 |
itsnotabigtruck | and change the -> to . | 03:39 |
itsnotabigtruck | though using global variables like that isn't considered a very good idea | 03:39 |
itsnotabigtruck | so you might want to restructure your code a bit | 03:39 |
ieatlint | although i think QList<Type> list = new QList<Type>; also works | 03:39 |
itsnotabigtruck | i'd suggest you go through some c++ tutorials before you dive in with complicated qt stuff | 03:39 |
itsnotabigtruck | c++ is complicated, going in head first is a bad idea | 03:39 |
itsnotabigtruck | ieatlint: only if list is changed to *list | 03:39 |
ieatlint | erg, yes | 03:40 |
ieatlint | typo :P | 03:40 |
rashm2k | trying it now | 03:41 |
Sazpaimon_ | has anyone gotten the PR1.3 sources dvd yet? | 03:41 |
*** Hurrian has quit IRC | 03:55 | |
rashm2k | I didn't initialise the model backing the listview | 03:57 |
rashm2k | duh | 03:57 |
*** Hurrian has joined #harmattan | 04:00 | |
*** suy has quit IRC | 04:04 | |
*** sigmaorion has quit IRC | 04:07 | |
*** beford has joined #harmattan | 04:15 | |
*** rashm2k has quit IRC | 04:22 | |
*** mschlens has quit IRC | 04:23 | |
*** mschlens has joined #harmattan | 04:24 | |
*** arcean has quit IRC | 04:28 | |
*** jaywink has quit IRC | 04:33 | |
*** beford has quit IRC | 05:14 | |
*** beford has joined #harmattan | 05:17 | |
*** Venemo has quit IRC | 05:21 | |
*** Venemo_ has joined #harmattan | 05:21 | |
*** ptl has quit IRC | 05:23 | |
*** rcg has quit IRC | 05:34 | |
*** hardaker has joined #harmattan | 05:40 | |
*** rcg has joined #harmattan | 05:47 | |
*** bef0rd has joined #harmattan | 05:50 | |
*** natunen has joined #harmattan | 05:50 | |
*** orfix has joined #harmattan | 05:56 | |
*** Venemo_ has quit IRC | 06:01 | |
*** bef0rd has quit IRC | 06:25 | |
*** natunen has quit IRC | 06:43 | |
*** whatsa has quit IRC | 06:59 | |
*** ptl has joined #harmattan | 07:45 | |
*** juergbi` has joined #harmattan | 07:51 | |
*** Jare_ has joined #harmattan | 07:51 | |
*** juergbi has quit IRC | 07:51 | |
*** kevin_b has quit IRC | 07:51 | |
*** phako has quit IRC | 07:51 | |
*** Jare has quit IRC | 07:51 | |
*** phako has joined #harmattan | 07:52 | |
*** beford has quit IRC | 07:52 | |
*** kevin_b has joined #harmattan | 07:52 | |
*** beford has joined #harmattan | 07:55 | |
*** piggz has joined #harmattan | 08:11 | |
*** piggz has quit IRC | 08:18 | |
*** Rajesh has joined #harmattan | 09:01 | |
*** Rajesh is now known as Guest56512 | 09:01 | |
*** hardaker has quit IRC | 09:14 | |
*** whatsa has joined #harmattan | 09:26 | |
*** natunen has joined #harmattan | 09:40 | |
*** suy has joined #harmattan | 09:44 | |
ladoga | is there youtube-dl for harmattan? | 09:52 |
ladoga | if not maybe i should package it | 09:52 |
*** tbf_ has joined #harmattan | 09:58 | |
*** tbf has quit IRC | 10:02 | |
*** beford has quit IRC | 10:37 | |
Elleo | ladoga: http://repo.pub.meego.com/home:/rzr:/harmattan/MeeGo_1.2_Harmattan_Maemo.org_MeeGo_1.2_Harmattan_standard/all/youtube-dl_2011.08.04-2_all.deb | 10:43 |
Elleo | haven't tried it myself | 10:43 |
ladoga | thanks | 10:43 |
Elleo | no problem :) | 10:44 |
*** lordross has joined #harmattan | 10:50 | |
*** juergbi` is now known as juergbi | 10:53 | |
*** Guest56512 has quit IRC | 10:56 | |
*** rZr has joined #harmattan | 11:02 | |
*** rZr is now known as rzr | 11:02 | |
*** rzr has quit IRC | 11:02 | |
*** buser has joined #harmattan | 11:05 | |
*** rZr has joined #harmattan | 11:20 | |
*** rZr is now known as rzr | 11:20 | |
*** rzr has quit IRC | 11:20 | |
*** mschlens has quit IRC | 11:20 | |
*** mschlens has joined #harmattan | 11:22 | |
*** rZr has joined #harmattan | 11:24 | |
*** rZr is now known as rzr | 11:24 | |
*** rzr has quit IRC | 11:24 | |
*** NIN101 has joined #harmattan | 11:27 | |
*** buser has quit IRC | 11:42 | |
*** M4rtinK has joined #harmattan | 11:44 | |
*** nid0 has joined #harmattan | 11:56 | |
*** gabriel9 has quit IRC | 12:01 | |
*** tom__ has joined #harmattan | 12:05 | |
*** tom__ has quit IRC | 12:17 | |
*** djszapi_ has joined #harmattan | 12:24 | |
*** jaywink has joined #harmattan | 12:28 | |
*** tom___ has joined #harmattan | 12:39 | |
*** tom___ has quit IRC | 12:46 | |
*** e-yes has quit IRC | 12:59 | |
*** rashm2k has joined #harmattan | 13:14 | |
*** Siosm has joined #harmattan | 13:14 | |
*** arcean has joined #harmattan | 13:15 | |
*** Siosm has quit IRC | 13:15 | |
*** Venemo has joined #harmattan | 13:33 | |
*** nid0 has quit IRC | 13:48 | |
*** e-yes has joined #harmattan | 13:49 | |
*** Venemo has quit IRC | 13:57 | |
*** Venemo has joined #harmattan | 13:57 | |
ZogG_laptop | arcean: thanks for comment on my app, reviewing would be appriciated too | 14:02 |
djszapi_ | Venemo: sup | 14:04 |
Venemo | djszapi_, fine, thanks :) you? :) | 14:05 |
djszapi_ | preparing for my italian and swiss trip.. | 14:05 |
*** Rajesh has joined #harmattan | 14:06 | |
*** Rajesh is now known as Guest25908 | 14:06 | |
*** tom___ has joined #harmattan | 14:22 | |
*** tom___ has quit IRC | 14:38 | |
*** admiral0 has joined #harmattan | 14:52 | |
*** Guest25908 has quit IRC | 14:53 | |
admiral0 | hello | 14:54 |
*** Rajesh_ has joined #harmattan | 14:54 | |
djszapi_ | admiral0: are you from Italy? | 14:54 |
admiral0 | yes | 14:54 |
djszapi_ | which city | 14:54 |
admiral0 | and still no qtonpi | 14:54 |
admiral0 | Legnano | 14:54 |
admiral0 | that's bear Milano | 14:54 |
admiral0 | s/bear/near | 14:54 |
*** Rajesh_ has quit IRC | 14:55 | |
djszapi_ | yep, I see on the map... | 14:55 |
admiral0 | why? | 14:55 |
djszapi_ | hmm, what about pm? | 14:55 |
admiral0 | pm? | 14:56 |
djszapi_ | query =) | 14:56 |
* admiral0 is confused | 14:56 | |
*** Rajesh_ has joined #harmattan | 14:56 | |
*** e-yes has quit IRC | 14:59 | |
rashm2k | in QAbstractItemModel::beginInsertRows ( const QModelIndex & parent, int first, int last ) | 14:59 |
rashm2k | what exactly is the parent? | 14:59 |
*** Rajesh_ has quit IRC | 15:05 | |
*** Rajesh_ has joined #harmattan | 15:07 | |
*** Rajesh_ has quit IRC | 15:15 | |
rashm2k | how do I get qml listview to load new items once it reaches the end? | 15:25 |
djszapi_ | rashm2k: what do you mean by "reached the end" ? | 15:27 |
djszapi_ | re: http://doc.qt.nokia.com/4.7-snapshot/qabstractitemmodel.html#beginInsertRows -> what is not clear from the description? | 15:27 |
djszapi_ | "The parent index corresponds to the parent into which the new rows are inserted;" | 15:28 |
rashm2k | I need to know once the user has scrolled to the bottom of the listview so I can load more items | 15:28 |
rashm2k | I don't need begineInsertRows | 15:29 |
rashm2k | Or rather I already use it - but I don't see how it can help me with this? | 15:29 |
djszapi_ | I do not understand | 15:29 |
djszapi_ | it is managed by the framework... | 15:29 |
djszapi_ | you just add as many items as you wish, and all the scrolling will be automatic... | 15:30 |
djszapi_ | well, you asked about the parent, and I gave you description. :-) | 15:30 |
rashm2k | Sorry I add 100 items - then when the user gets to the 100th item I make a web service call to get the next 100 | 15:30 |
djszapi_ | I do not understand why that is useful | 15:31 |
rashm2k | so I dont need buttons for next | 15:31 |
djszapi_ | you can fetch all those at once, and the user interface will be much smoother while scrolling. | 15:31 |
rashm2k | I can fetch maximum 200 items at a time | 15:32 |
djszapi_ | why? | 15:33 |
rashm2k | restriction on the web api | 15:33 |
rashm2k | not under my control | 15:33 |
djszapi_ | that does not make sense to me | 15:33 |
djszapi_ | you can fetch as many times as you wish in advance. | 15:33 |
djszapi_ | it is an implementation details how you get all the items at once/. | 15:34 |
djszapi_ | detail* | 15:34 |
rashm2k | I am interacting with the ebay web service - I don't want to fetch all items at once! There are thousands! | 15:34 |
djszapi_ | so instead, you would like to slow down the user interface for /all the time/ while scrolling over? | 15:35 |
rashm2k | It will be in batches of 100 or so - so it shouldn't be a big delay, plus I will have a loading screen | 15:36 |
djszapi_ | I do not understand | 15:36 |
djszapi_ | but I think it is a bad usability design | 15:36 |
djszapi_ | go for the next button, if you think, it is cool | 15:36 |
djszapi_ | the vast majority of the people do the hard job while launching the application, or in a separate thread after that, but surely not for user interaction | 15:37 |
rashm2k | this is a user interaction | 15:37 |
rashm2k | the user enters terms to search not me | 15:38 |
djszapi_ | I wonder if you have ever seen facebook | 15:38 |
djszapi_ | and how they handle this. | 15:38 |
djszapi_ | They have a "next button" concept. | 15:38 |
djszapi_ | what is the problem? | 15:38 |
rashm2k | not really | 15:38 |
*** Hurrian has quit IRC | 15:38 | |
djszapi_ | ok, I am out. = | 15:39 |
djszapi_ | =) | 15:39 |
rashm2k | I dont have space on the screen for it | 15:39 |
rashm2k | maybe a footer instead - like in the email app | 15:39 |
djszapi_ | you mean toolbar, not footer | 15:39 |
rashm2k | no footer | 15:39 |
djszapi_ | ok, if you know better, then I am afraid I cannot help, or needless to try. : | 15:41 |
djszapi_ | :) | 15:41 |
rashm2k | if you go into folders in the email app then scroll al the way down there is a button for get more messages | 15:41 |
rashm2k | thanks for your input much appreciated as always ;-) | 15:41 |
djszapi_ | which I said like quite a while ago, you can do a next button? | 15:41 |
djszapi_ | I am still unsure what you expect. | 15:42 |
djszapi_ | everything has been said. | 15:42 |
rashm2k | maybe the auto fetch is too much | 15:42 |
rashm2k | I'll stick with the get more button | 15:43 |
djszapi_ | yes, it is totally nonsense | 15:43 |
djszapi_ | what If I accidentally scroll over? | 15:43 |
djszapi_ | I need to wait for the load? | 15:43 |
rashm2k | I have seen it though | 15:43 |
rashm2k | yep | 15:43 |
djszapi_ | it is really one swipe to scroll | 15:43 |
djszapi_ | I would really not like to hang. | 15:43 |
*** jaywink has quit IRC | 15:44 | |
djszapi_ | in addition, if you lost the internet connection with a flaky ISP, you would not be able to browse further on, etc | 15:44 |
rashm2k | yeah dont handle any errors yet | 15:44 |
rashm2k | lol | 15:44 |
djszapi_ | fetch in a bunch is a good idea | 15:44 |
djszapi_ | if the list is long, filter it. | 15:44 |
rashm2k | thats the plan | 15:45 |
rashm2k | get 25 | 15:45 |
rashm2k | then let user filter | 15:45 |
djszapi_ | no need for any automatic fetching further on | 15:45 |
rashm2k | then load more | 15:45 |
rashm2k | quck question | 15:46 |
rashm2k | what is currentIndex set when I am scrlling in the listview | 15:46 |
djszapi_ | it may sound weird, but the current index? | 15:47 |
rashm2k | set to | 15:47 |
rashm2k | yes but I have 5 items visible on my screen - which of the 5 is it? | 15:47 |
djszapi_ | I do not understand the question | 15:48 |
djszapi_ | the current index is the current index. | 15:48 |
rashm2k | Oh it's only for highlight | 15:48 |
djszapi_ | whichever is selected. | 15:48 |
djszapi_ | I am unsure what you mean by highlight | 15:49 |
djszapi_ | there is a currently selected item, and that index is contained in the variable. | 15:49 |
djszapi_ | what is the problem? | 15:49 |
djszapi_ | even when you scroll your finger is selected something | 15:49 |
djszapi_ | finger selected* | 15:50 |
rashm2k | ah right I see | 15:50 |
rashm2k | qml is the tricky bit | 15:53 |
rashm2k | getting everything just right takes long....... | 15:53 |
*** vladest_ has joined #harmattan | 15:54 | |
*** vladest has quit IRC | 15:57 | |
*** vladest_ is now known as vladest | 15:57 | |
*** tom___ has joined #harmattan | 15:59 | |
*** tom___ has quit IRC | 16:04 | |
*** orfix has quit IRC | 16:05 | |
*** bedrock has joined #harmattan | 16:09 | |
*** lbt is now known as lbt_away | 16:22 | |
*** hardaker has joined #harmattan | 16:29 | |
Corsac | hhm, is there a way to use third party google calendars in n9? | 16:42 |
*** rashm2k has quit IRC | 16:45 | |
*** new_ has joined #harmattan | 16:50 | |
*** new_ has quit IRC | 16:51 | |
*** CreamyG31338 has quit IRC | 17:02 | |
*** CreamyG31337 has joined #harmattan | 17:04 | |
*** DocScrutinizer05 has quit IRC | 17:12 | |
*** DocScrutinizer05 has joined #harmattan | 17:12 | |
*** DocScrutinizer has quit IRC | 17:12 | |
*** DocScrutinizer has joined #harmattan | 17:12 | |
*** lordross has quit IRC | 17:13 | |
jonni | Corsac: hmm, thats the difference with google calendars and 3rd party google calendars? | 17:17 |
*** nid0 has joined #harmattan | 17:17 | |
jonni | heh, maybe I have to google the answer :) | 17:17 |
*** Venemo has quit IRC | 17:19 | |
*** e-yes has joined #harmattan | 17:20 | |
*** lordross has joined #harmattan | 17:22 | |
Corsac | jonni: I'm not sure it's the right term | 17:23 |
Corsac | but basically some people publish those calendars on the web | 17:23 |
Corsac | is it possible to subscribe to them when I have no google account? | 17:23 |
jonni | you need to have google account in order to sync, but multiple cals should work just fine | 17:24 |
Corsac | ok, so that won't work | 17:24 |
Corsac | and any way to add a link to an ics file? | 17:24 |
*** vladest has quit IRC | 17:26 | |
jonni | sdk has example of calendar demo that can import ics files, but if you mean web browser, then most likely it doesnt have mime handler by default, but you can ofcourse make custom imported and install mime handler yourself. | 17:27 |
*** EbonyBlack has joined #harmattan | 17:27 | |
*** EbonyBlack is now known as djszapi__ | 17:27 | |
*** djszapi__ is now known as djszapi___ | 17:27 | |
Corsac | what do you mean? | 17:28 |
jonni | where do you want to add the link to an ics file, in your toilets wall with qr code? | 17:29 |
Corsac | I already have an ics link, I want to put that in my calendar | 17:29 |
jonni | using commandline? | 17:29 |
*** djszapi_ has quit IRC | 17:29 | |
Corsac | I don't really care | 17:30 |
Corsac | but I'd like it to be kept updated | 17:30 |
Corsac | I just tried from the browser | 17:30 |
Corsac | it'll download the ics, then you can import it to your calendar | 17:30 |
Corsac | but that won't really help | 17:30 |
jonni | Corsac: http://harmattan-dev.nokia.com/docs/library/html/qtmobility/calendardemo-src-calendardemo-cpp.html, just make some crontab/wget script, that polls the file and imports it every hour or something. But in reality its just easier if you make google account and sync it there. | 17:31 |
Corsac | I'll rather take that as “it's not possible” :) | 17:32 |
jonni | its only software so everything is possible :) | 17:32 |
jonni | oh and if you want to use 3rd party apps, then you can use SyncEvolution, I think that has option for random .ics url, and you get full automatic sync | 17:34 |
Corsac | I already use syncevolution to sync with evolution on my laptop | 17:36 |
*** vladest has joined #harmattan | 17:37 | |
*** rashm2k has joined #harmattan | 17:41 | |
*** hardaker has quit IRC | 17:41 | |
*** GAN950 has quit IRC | 17:41 | |
*** decibyte has quit IRC | 17:42 | |
*** GAN950 has joined #harmattan | 17:42 | |
djszapi___ | ieatlint: sup, might to California soon. | 17:42 |
djszapi___ | go* | 17:42 |
*** vladest has quit IRC | 17:43 | |
*** decibyte has joined #harmattan | 17:43 | |
pa | go or move? :) | 17:58 |
djszapi___ | visit | 17:59 |
pa | is there a way to make it so that a "Page" is always opened with showStatusBar: false, without having to set it when the parent pushes it on the stack? | 18:00 |
pa | for example, if i have Page a which is Page { ... showStatusBar: true ... }, and page b that is Page { ... showstatusbar: false ... } | 18:01 |
pa | does it work like every time i push b, the status bar disappear, and when i pop it, it reappears? | 18:01 |
*** Venemo_N9 has joined #harmattan | 18:02 | |
pa | or do i have to do it by hand before/after i push/pop? | 18:02 |
pa | (at the moment im doing by hand) | 18:02 |
djszapi___ | unsure what you mean ... | 18:03 |
djszapi___ | http://harmattan-dev.nokia.com/docs/library/html/qt-components/qt-components-meego-pagestackwindow.html#showStatusBar-prop | 18:04 |
*** Enforcer has quit IRC | 18:05 | |
djszapi___ | when you push a page, it is a different page | 18:05 |
djszapi___ | it has nothing to do with the previous | 18:05 |
djszapi___ | so ... means, if you push a page, you will have stuff as it is set | 18:05 |
djszapi___ | and when you pop, you will get the next page in the stack ... | 18:05 |
djszapi___ | so ... it ought to work without any explicit setttings ... | 18:05 |
djszapi___ | but, the statusbar is a different thing | 18:06 |
pa | so every time i go back and forth, it+s always a new page of the same type? | 18:06 |
*** Enforcer has joined #harmattan | 18:06 | |
pa | like back and forth between 2 pages | 18:06 |
djszapi___ | cuz the status bar is application wise thingie | 18:07 |
*** bedrock has quit IRC | 18:08 | |
djszapi___ | PSW, to be precise ... | 18:08 |
djszapi___ | means ... | 18:08 |
djszapi___ | you cannot set it per page differently ... | 18:08 |
djszapi___ | once, it is set, it is always like that ... | 18:08 |
djszapi___ | so yes, you do need to set explicitely if you would like to get the global setting different for each page ... | 18:08 |
*** Enforcer has quit IRC | 18:11 | |
*** heymast__ has quit IRC | 18:13 | |
*** Enforcer has joined #harmattan | 18:16 | |
jonni | http://www.youtube.com/watch?v=9ntPxdWAWq8 | 18:17 |
*** shanttu has joined #harmattan | 18:19 | |
*** lordross has quit IRC | 18:30 | |
pa | so, let put the case we have a page, a, that has to be shown with the toolbar, and a page, b, that has to be shown without, and from both a and b there is a button to go to c, that has to be shown with the toolbar. | 18:30 |
pa | when we press the button back from c, how can we check if we should show the toolbar or not, depending on what we are popping? | 18:31 |
*** heymaster-laptop has joined #harmattan | 18:37 | |
pa | maybe by just checking "currentPage" after having called pop(), and looking, e.g., for a property that tells what to do? | 18:48 |
djszapi___ | why are you making his complex? | 18:51 |
djszapi___ | this* | 18:52 |
djszapi___ | 1) There is a currentPage page | 18:55 |
djszapi___ | 2) You can always store and restore the previous status | 18:56 |
djszapi___ | s/page/property/ | 18:57 |
*** Guest29894 has quit IRC | 18:58 | |
*** phako_ has joined #harmattan | 18:59 | |
*** phako_ has quit IRC | 18:59 | |
*** heymaster-laptop has quit IRC | 19:04 | |
*** Venemo_N9 has quit IRC | 19:09 | |
*** mpr has joined #harmattan | 19:11 | |
*** mpr is now known as Guest85863 | 19:12 | |
*** infobot has quit IRC | 19:12 | |
*** heymaster-laptop has joined #harmattan | 19:13 | |
*** shanttu has quit IRC | 19:14 | |
*** shanttu has joined #harmattan | 19:25 | |
*** lordross has joined #harmattan | 19:30 | |
*** lordross has quit IRC | 19:34 | |
*** infobot has joined #harmattan | 19:39 | |
*** ChanServ sets mode: +v infobot | 19:39 | |
*** admiral0 has quit IRC | 19:51 | |
*** Venemo_N9 has joined #harmattan | 19:55 | |
*** rashm2k has quit IRC | 20:07 | |
*** rashm2k has joined #harmattan | 20:07 | |
itsnotabigtruck | 'sup | 20:13 |
*** Venemo_N9 has quit IRC | 20:13 | |
djszapi___ | nmu | 20:17 |
*** lbt_away is now known as lbt | 20:23 | |
*** Venemo_N9 has joined #harmattan | 20:23 | |
*** tomma_ has joined #harmattan | 20:42 | |
*** Viltzu_ has joined #harmattan | 20:43 | |
*** niwakame|away_ has joined #harmattan | 20:45 | |
*** PTapioK has quit IRC | 20:46 | |
*** tomma has quit IRC | 20:46 | |
*** Viltzu has quit IRC | 20:46 | |
*** niwakame|away has quit IRC | 20:46 | |
*** virtuald has quit IRC | 20:46 | |
*** niwakame|away_ is now known as niwakame|away | 20:46 | |
*** PaulePanter has quit IRC | 20:48 | |
*** PaulePanter has joined #harmattan | 20:48 | |
*** mankeli has quit IRC | 20:49 | |
*** mankeli has joined #harmattan | 20:49 | |
*** Venemo_N9 has quit IRC | 20:50 | |
*** tbf_ has quit IRC | 20:55 | |
*** ajalkane has joined #harmattan | 20:56 | |
*** mike7b4_n9nemo has joined #harmattan | 20:57 | |
*** mike7b4_n9nemo has quit IRC | 20:58 | |
*** shanttu has quit IRC | 21:02 | |
*** mankeli has quit IRC | 21:04 | |
*** _xnt14 has quit IRC | 21:04 | |
*** xmlich02 has quit IRC | 21:04 | |
*** merlin1991 has quit IRC | 21:04 | |
*** tbf_ has joined #harmattan | 21:07 | |
*** PTapioK has joined #harmattan | 21:10 | |
*** mankeli has joined #harmattan | 21:10 | |
*** _xnt14 has joined #harmattan | 21:10 | |
*** xmlich02 has joined #harmattan | 21:10 | |
*** merlin1991 has joined #harmattan | 21:10 | |
*** robertjw has quit IRC | 21:11 | |
*** virtuald has joined #harmattan | 21:12 | |
*** virtuald has joined #harmattan | 21:12 | |
*** GeorgeH has quit IRC | 21:15 | |
*** Venemo_N9 has joined #harmattan | 21:15 | |
*** GeorgeH has joined #harmattan | 21:16 | |
*** beford has joined #harmattan | 21:17 | |
*** whatsa has quit IRC | 21:22 | |
*** piggz has joined #harmattan | 21:24 | |
*** lordross has joined #harmattan | 21:31 | |
*** lordross has quit IRC | 21:36 | |
*** ajalkane has quit IRC | 21:41 | |
*** robertjw has joined #harmattan | 21:43 | |
*** clau has joined #harmattan | 21:51 | |
*** CreamyG31337 has quit IRC | 21:53 | |
*** CreamyG31337 has joined #harmattan | 21:54 | |
*** gabriel9 has joined #harmattan | 21:57 | |
*** CreamyG31337 has quit IRC | 21:57 | |
*** CreamyG31337 has joined #harmattan | 21:58 | |
*** piggz has quit IRC | 22:00 | |
*** lordross has joined #harmattan | 22:00 | |
*** ajalkane has joined #harmattan | 22:03 | |
*** buser has joined #harmattan | 22:07 | |
*** rashm2k has quit IRC | 22:10 | |
*** whatsa has joined #harmattan | 22:16 | |
*** infobot has quit IRC | 22:19 | |
*** whatsa has quit IRC | 22:20 | |
djszapi___ | anybody know what the latest and greatest Qt version available on Symbian? | 22:22 |
*** clau has quit IRC | 22:28 | |
jonni | 4.8.2 | 22:30 |
djszapi___ | heh, newer than on Harmattan | 22:30 |
djszapi___ | Harmattan had 4.7.4 iirc back then | 22:31 |
djszapi___ | still the best | 22:31 |
jonni | well 4.8.2 is only avail if you compile it yourself, smart installer for Anna installs 4.7.4 by default most likely | 22:32 |
djszapi___ | lol | 22:33 |
*** special has quit IRC | 22:33 | |
djszapi___ | and Bella? | 22:33 |
djszapi___ | we got last october at the Qt Dev Days? | 22:34 |
jonni | Belle has 4.7.4 by default | 22:34 |
djszapi___ | jonni: thanks :) | 22:37 |
*** suy has quit IRC | 22:45 | |
*** whatsa has joined #harmattan | 22:51 | |
*** Venemo_N9 has quit IRC | 22:53 | |
*** whatsa has quit IRC | 22:54 | |
*** ajalkane has quit IRC | 22:55 | |
*** virtuald has quit IRC | 22:58 | |
*** PTapioK has quit IRC | 23:00 | |
*** special has joined #harmattan | 23:00 | |
*** special has joined #harmattan | 23:00 | |
*** PTapioK has joined #harmattan | 23:00 | |
*** tbf_ has quit IRC | 23:01 | |
*** Venemo has joined #harmattan | 23:03 | |
*** virtuald has joined #harmattan | 23:06 | |
*** faenil has quit IRC | 23:14 | |
*** Venemo has quit IRC | 23:25 | |
*** Venemo has joined #harmattan | 23:32 | |
*** ptl has quit IRC | 23:34 | |
*** gabriel9 has quit IRC | 23:38 | |
pa | i cant do pageStack().currentPage().id == something, right? | 23:51 |
jpnurmi | pa: no, id is not a property | 23:54 |
djszapi___ | pa: in addition you should not really ever do that for your need | 23:56 |
djszapi___ | you should really just do what I recommended | 23:56 |
pa | but i could specify a property and do the comparison on that property? | 23:56 |
pa | ah | 23:56 |
djszapi___ | as in, storing the stuff, and revert | 23:56 |
pa | didnt read | 23:56 |
djszapi___ | it is not a complex logic. | 23:56 |
pa | what do you mean with "previous status"? | 23:57 |
djszapi___ | means | 23:57 |
djszapi___ | previous status | 23:57 |
pa | ok, so say page 1 push page 2 , and shows toolbar | 23:57 |
pa | how can i pop, and decide whether to show toolbar or not, depending whether the toolbar was visible or not at the time? | 23:58 |
*** whatsa has joined #harmattan | 23:58 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!