Utilitybase chatlog - 2006-04-05

Back to overview|Highlight a word

00:50:52   <-- number6 has left #amigadev
01:12:31   --> ssolie (~ssolie@2f31aeca.1ccf6d0.abhsia.telus.net) has joined #amigadev
01:51:42   <-- bones has quit (Quit: This computer has gone to sleep)
02:29:10   <-- ssolie has quit (Quit: OS4 makes computing fun)
05:45:26   -!- Ami603[zZz] is now known as Ami603[w0rK]
05:45:27 Ami603[w0rK] morning
05:53:27   <-- Ami603[w0rK] has quit (Read error: Connection reset by peer)
05:53:43   --> Ami603 (~coco@1366b407.1b5b45e4.dynamicIP.rima-tde.net) has joined #amigadev
05:54:00   -!- Ami603 is now known as Ami603[w0rK]
07:31:46   <-- arc has quit (Ping timeout: 180 seconds)
07:32:18   --> arc (~u@38050f2d.2142b218.lv.cox.net) has joined #amigadev
09:14:00   --> bones (~darren@1a9e3c85.11de379d.demon.co.uk) has joined #amigadev
11:41:03   --> number6 (~user@10eff834.31b34b44.dialup.citynet.net) has joined #amigadev
12:07:16   <-- number6 has left #amigadev
15:13:02   <-- Ami603[w0rK] has quit (Ping timeout: 180 seconds)
15:28:34 BinoX Hello everybody!
15:37:30 BinoX bah.. boring :p
15:37:32 BinoX talk
15:40:16   -!- * nicomen has taste of capirinha in the mouth
15:40:25 BinoX Hey nicomen :)
15:41:10 BinoX just a quick question... if I passed 0x36 to a function.. is that the same as passing it an int containing 99? (36 in hex is 99 btw)
15:42:10 nicomen yes
15:42:26 BinoX Ah good, thought so.. makes my life easier then ^_^
16:09:28 Orgin 0x36 == 54 == 066
16:10:41 BinoX since when does 0x36 == 54?
16:15:03 nicomen since:
16:15:05 nicomen $ printf "hex: %x oct: %o dec: %d\n" 0x36 0x36 0x36
16:15:05 nicomen hex: 36 oct: 66 dec: 54
16:15:42 BinoX maybe I'm thinking of 63 then.. heh
16:15:52 BinoX Yeah.. heh.. I am
16:15:57 BinoX 63 is 99 >_>;;
16:16:01 BinoX oops
16:16:05 nicomen $ perl -le ' 'print ((3*16)+6)'
16:16:05 nicomen 54
16:16:24 nicomen $ perl -le 'print ((3*16)+6)'
16:17:17 BinoX Hmm... still can;t manage to set a true color pen up.. looks like it's gunna be black and white for a while >_<
16:26:31 BinoX oops
16:26:35 BinoX Me being crap
16:26:37 BinoX lol
16:27:26 BinoX was using APen instead of APenColor... probably because the autodocs don't mention the latter >_<
17:39:36   --> antique (~user@362b7f89.3a07d0d4.cust.smrtcall.net) has joined #amigadev
17:41:13 BinoX Hey.. any reaction gurus around? heh
17:41:24 antique nope,sorry! not me
17:42:05 nicomen me neither )
17:42:23 BinoX lol... what DO u know about reaction nicomen?
17:42:42 antique what's your problem then?
17:43:00 BinoX do you.. for example... know how I can change the depth of a windows (in comparison to other windows)
17:43:12 nicomen depth?
17:43:17 antique eh?
17:43:23 BinoX like what window is on top of another window
17:43:27 nicomen as in the window z-value?
17:43:31 BinoX yah
17:43:34 BinoX that
17:43:39 nicomen that's not reaction per se
17:43:43 nicomen more like intuition
17:43:55 nicomen don't know how to do that, nor if it's possible in a clean way though
17:43:59 BinoX Well.. Yeah.. that too... too many SetXxxxxx things.. lol
17:44:21 antique thinking of this: WA_DepthGadget,TRUE, ?
17:44:27 BinoX Well, I guess I'll keep looking
17:44:46 nicomen antique: that's probably just to let the window have a depth gadget
17:44:56 BinoX No.. I have a custom window system mostly written, I just realised that the depth gadget doesn't work in it.. (custom buttons)
17:45:02 antique nicomen: yes.
17:48:52 BinoX found it :)
17:49:14 nicomen what?
17:49:41 BinoX So simple... WindowToBack and WindowToFront heh
17:50:10 nicomen hehe
17:50:35 BinoX What would you rather a window did 1st? Go to back or front?
17:50:56 nicomen first?
17:51:32 BinoX yeah... if u clicked a button to change position.. front or back 1st?
17:51:47 nicomen nope, still don't get it ;)
17:51:51 Orgin if it's fronmost then back, it it's not then front.
17:51:59 BinoX What if it's in the middle?
17:52:15 Orgin then it's not, ergo front.
17:52:24 BinoX ah.. ok
17:52:41 BinoX I was taking about window z-value again
17:52:46 nicomen got it
17:55:32 BinoX Not.. how to tell if the window is on top of not.. lol
17:55:36 BinoX or*
17:56:11 nicomen I thought there was a toggle funtcion
17:56:15 Orgin Don't you have a list of the windows? Just the find the one in the list that is frontmost :)
18:01:12 BinoX I thought there was a toggle function too :\
18:01:19 BinoX But I can't find it
18:01:35 BinoX atm I'm just doing front, then back, then front, etc...
18:02:48 Orgin urgh
18:02:56 Orgin Not very intuitive
18:03:13 BinoX Well, I dunno how to tell if it's front or back :(
18:03:42 Orgin Don't have to tell if it's back. Only if it's in front or not.
18:04:01 BinoX How to tell that though? That's the question
18:04:15 BinoX Other Intuition windows to contend with
18:04:30 Orgin Well then you need to find all windows.
18:05:32 Orgin Besides, can't you just redirect the action to intuition itself and let it handle it then?
18:07:36   -!- * BinoX shrugs
18:08:13 BinoX Doesn't intuition have something like IsOnTop(WindowID) ?
18:08:36 Orgin No idea, check autodocs. SHouldn't be too hard to get a list of all windows though.
18:12:59 BinoX Wait.. even if I did get a list of windows, how would I know which one is on top?
18:13:37 Orgin I suppose there an order value of some kind.
18:14:02 Orgin I'm not an AOS expert mind you, but it would be very strange if that info wasn't available.
18:14:31 BinoX You would think so.. heh
18:14:34 nicomen struct Screen
18:14:34 nicomen { struct Screen *NextScreen; /* linked list of screens */ struct Window *FirstWindow; /* linked list Screen's Windows */
18:14:53 nicomen I _think_ it reflects the current window stack
18:15:29 BinoX ooh..
18:18:28 Orgin Interesting, you can move a window up and down in the chain, not just to the top and bottom but also inside the chain of windows. (reading autodoc for intuition)
18:18:47 nicomen yup
18:20:06 Orgin "RethinkDisplay()" hehe
18:21:38   --> rigolote (~centremed@112cbe95.33fe9952.abo.wanadoo.fr) has joined #amigadev
18:21:51   <-- rigolote has left #amigadev
18:23:02 nicomen bruk ;)
18:23:06 nicomen -bruk
18:30:37 BinoX brb
18:30:45   <-- BinoX has quit (Quit: WookieChat 2 on AmigaOS4 Pre4)
18:33:45 antique -missbruk :)
18:39:42 nicomen -s
19:09:30   --> BinoX (~BinoX@2850d5e8.24785cc1.demon.co.uk) has joined #amigadev
19:11:52 BinoX What interfact do I use for DoMethod?
19:16:07 BinoX bah.. brb again
19:16:10   <-- BinoX has quit (Quit: WookieChat 2 on AmigaOS4 Pre4)
19:16:38   --> BinoX (~BinoX@2850d5e8.24785cc1.demon.co.uk) has joined #amigadev
19:16:44 BinoX Much better :)
19:44:46   <-- BinoX has quit (Read error: Connection reset by peer)
19:45:44   --> number6 (~user@2d996ff7.31b34b44.dialup.citynet.net) has joined #amigadev
19:57:29   --> BinoX (~BinoX@2850d5e8.24785cc1.demon.co.uk) has joined #amigadev
19:57:35 BinoX Gah DSI..
19:57:53 BinoX Anyone around? More questions from the n00bmeister.. lol
19:58:11 BinoX How can I iconify a window without using RA_Iconify?
20:07:30   --> AmiZaP (~HAL@1b415a10.1e624c7d.gliwice.msk.pl) has joined #amigadev
20:25:44   <-- BinoX has quit (Quit: WookieChat 2 on AmigaOS4 Pre4)
20:27:30   <-- number6 has quit (Ping timeout: 180 seconds)
20:28:32   --> number6 (~user@24862c5a.31b34b44.dialup.citynet.net) has joined #amigadev
20:29:25   --> BinoX (~BinoX@2850d5e8.24785cc1.demon.co.uk) has joined #amigadev
20:29:34 BinoX previous question still stands ;)
21:12:33 BinoX I guess no-one knows :(
21:14:35   --> zerohero (zerohero@Zerohero.Amigaworld.Net) has joined #amigadev
21:14:49 number6 Hi z
21:15:16 zerohero evening #6
21:25:51   <-- antique has quit (Ping timeout: 180 seconds)
21:26:29   <-- number6 has left #amigadev
21:37:06   <-- zerohero has quit (Quit: If there's a scale of stupid, I would be right on top, yeah!)
21:52:15   --> antique (~user@362b7f89.3a07d0d4.cust.smrtcall.net) has joined #amigadev
21:55:06   <-- antique has quit (Quit: ppc 604e 233mhz)
21:57:28   <-- AmiZaP has quit (Quit: I love jahc)
22:09:41   --> number6 (~user@231e202b.31b34b44.dialup.citynet.net) has joined #amigadev
23:25:04   --> Belxjander (~Belxjande@2af52808.540cf85.xtra.co.nz) has joined #AmigaDev
23:25:32   --> Blxjander (~Belxjande@2af52808.540cf85.xtra.co.nz) has joined #AmigaDev
23:26:14   <-- Blxjander has quit (Client exited)
23:26:50   <-- Belxjander has quit (Quit: Quit::)
23:26:59   --> Belxjander (~Belxjande@2af52808.540cf85.xtra.co.nz) has joined #AmigaDev
23:58:36   <-- Belxjander has quit (Ping timeout: 180 seconds)