Slashdot Mirror


Aqua Mozilla OK with Apple

MikeMo writes: "Turns out Apple thinks an Aqua Mozilla is OK, after all. Eric Yang had a chat with them and they made up." This is an update to this story.

70 of 314 comments (clear)

  1. Is this an overreaction or not? by aussersterne · · Score: 4, Insightful

    I'm not familiar enough with the "real" Aqua products to understand what just went down here.

    It sounds to me like Apple did say it was okay to make an Aqua-like Mozilla -- but only using the "real" Apple tools, and therefore (purely my extrapolation) for Mac OS X users only. Aqua look-and-feel through "emulation" is still strictly forbidden.

    Yes?

    If this is the case, then the Slashdot was not overreacting at all -- it's still a "legitimate Aqua" sues "homebrew Aqua look" issue in which all non-MacOS users are forbidden from using nice shiny sea-blue widgets, etc.

    Or am I misunderstanding?

    --
    STOP . AMERICA . NOW
  2. So what exactly does Apple want? by st.+augustine · · Score: 5, Insightful

    From the article: "What Apple objected to was not Aquafying Mozilla, but rather the way I was doing it via emulation, thus not giving Mozilla users a pure Aqua experience. Apple is willing to provide information for creating real Aqua experience for Mozilla."

    Does Apple mean they insist that Mozilla use native OS X widgets if it wants to look like an Aqua application? From my (admittedly limited) understanding of the Mozilla architecture, this is impossible. Mozilla's appearance is all defined at run-time, and everything including its own buttons, menus, scroll bars, is a Mozilla custom component, not part of the OS standard UI toolkit.

    Am I wrong? Please correct me. But it seems like the only thing you could do would be to write your own browser using native widgets, and embed the Gecko rendering engine, ala Galeon. Mozilla's not going to give you a "pure Aqua experience" unless you rewrite it from scratch.

    --

    -- Some things are to be believed, though not susceptible to rational proof.
    1. Re:So what exactly does Apple want? by Skuggan · · Score: 3, Interesting

      "Mozilla's appearance is all defined at run-time, and everything including its own buttons, menus, scroll bars, is a Mozilla custom component, not part of the OS standard UI toolkit."

      This was the worst design decision(?spelling?) with Mozilla. Big, bloated GUI, slowing down the good, fast rendering engine. Who wanted this? Had someone had an overdoze of Winamp skins?

      --
      http://www.millnet.se/ GO/U d- s+:+ a C++ UL++++ P- L+++ E W+++ N+ w++ M-- PE+ t+ X++
    2. Re:So what exactly does Apple want? by inburito · · Score: 2, Insightful

      It uses it's own widget library, right? And they were already somehow emulating aqua-look?

      Why not just replace the emulation with native calls. I mean how about..
      #ifdef __MACOSX_WITH_AQUA__
      ..code..
      #else
      ..code..
      #endif
      ..in the widget library. Of course those smart mozilla developers can probably come up with something more elegant but certainly something like this shouldn't be more than minor obstacle..

      And they do have a point about pure Aqua experience which is more than just pretty looks. It would certainly be confusing to have an application that looks like it conforms to the normal aqua guidelines and behaviour but then acts differently.

      Also, it would be quite a burden for mozilla developers to emulate everything instead of just letting the system ui-library take care of all the nasty details.

      This would just make mozilla even better on macintosh and if for some reason there isn't enough interest in making a native aqua implementation you can always use the boring standard look..

      So where's the problem. Apple is just protecting their brand. Just like you can't call any old cola a coca cola..

    3. Re:So what exactly does Apple want? by slamb · · Score: 4, Informative

      This was the worst design decision(?spelling?) with Mozilla. Big, bloated GUI, slowing down the good, fast rendering engine.

      I also think this was a terrible decision, but not for the same reason. There is a reason that damn near every program on any given GUI (with the notable exception of X11) looks about the same, and it's not because programmers are unimaginative.

      It's because users are happier when the interface adheres to consistent guidelines. Each platform has its own set of guidelines. A few examples:

      How many times have you been annoyed when you hit the wheel mouse and it didn't work right? That's almost always because of some moronic programmer who decided it would be better to write his/her own widgets. Wheel mice are one of the places this becomes most obvious, because they didn't exist when a lot of these programs were designed. The GUI vendor added support to the native widgets, but the stupid replacement ones in a lot of cases don't have support. Or when they do, it doesn't work quite the same. (I.e., seperate preferences for the number of lines to scroll.)

      Mozilla is one of the worst offenders here, completely scrapping the idea of an interface consistent with anything else.

      (Java is a bit of an exception. It doesn't have a system of its own, so arguably it also violates the other interface guidelines. However, it makes sense to have a single interface for Java, since applications are intended to be very cross-platform. Plus, Java has actually taken on the challenge of designing a good GUI of their own...observe the fact that there is a book out on the Java look and feel. I'm not aware of a similar one for Mozilla.)

    4. Re:So what exactly does Apple want? by BZ · · Score: 2

      Seeing as Mozilla is supposed to be an application platform, the same argument could be made. And such a book on Mozilla is coming from O'Reilley (can't recall the title at the moment).

    5. Re:So what exactly does Apple want? by BZ · · Score: 4, Insightful

      > Who wanted this?

      Mozilla needed a custom widget set to comply with CSS as well. It seemed natural to use it for the interface too, eliminating porting headaches.

    6. Re:So what exactly does Apple want? by inburito · · Score: 2

      So there is no way to write a wrapper for a native aqua ui that would have the same interface as the original ui-code?

      I'll admit that I have no idea of the design of mozilla and don't really care how it looks on mac but just for the sake of an argument from a software design point of view..

      Oh.. I do agree that having a stable base and functionality is a lot more important than silly eye-candy..

    7. Re:So what exactly does Apple want? by bwilson · · Score: 5, Informative

      The decision to make the interface custom was a result of the incredible mess that became of the previous cross-platform version. It is also necessary to provide custom controls to comply with CSS, which allows web pages to define button and scrollbar colors, for example.

      IE defines its own controls for this reason (no kidding!), they just look like the Windows ones by default. Microsoft Word (and possibly the rest of Office) have all custom controls that look like the Windows ones. Sometimes the look is slightly off and if you look at the window hierarchy in Spy++ you'll notice that the buttons are not actually Windows, which is what you'd get with native widgets. So people shouldn't single out Mozilla for their criticism of its custom controls.

      I used Mozilla on a Mac a while ago and I swear (much to my surprise) that it was using native widgets. Of course, it uses native menus, but the buttons and scrollbars seemed to be native as well, I played with the system configuration and the changes (like for scroll bar button configuration) seemed to be reflected in Mozilla. If this is the case, it should be easy to use native Aqua controls. Can somebody with a Mac confirm this?

    8. Re:So what exactly does Apple want? by slamb · · Score: 2, Insightful

      Seeing as Mozilla is supposed to be an application platform, the same argument could be made.

      True, but I don't believe Mozilla will ever have even a fraction of the support Java does. Java is a very well-thought-out lanaguage with some interesting concepts (the first widespread VM and really widespread GC), a really good API, a huge install base, and lots of resources on it available. As much as apples and oranges can be compared (a programming language vs. a web browser, although they both are more than that), Java comes out far ahead.

      And such a book on Mozilla is coming from O'Reilley (can't recall the title at the moment).

      Interesting. News to me.

    9. Re:So what exactly does Apple want? by jesser · · Score: 2

      Did the decision to make Mozilla an "application platform" come before or after the decisions to abstract the user interface and have Mozilla draw its own widgets?

      --
      The shareholder is always right.
    10. Re:So what exactly does Apple want? by EvlG · · Score: 4, Insightful

      mod this up, he is dead on.

      Crossplatform HTML sucked in Navigator because the widgets for Win32 acted just different enough from Mac and from X Window that it got ugly trying to make it look and act consistent.

      Mozilla fixes that problem, and kudos to them for it.

      (Not to mention being able to write apps for hte Mozilla platform. That's a nice benefit as well)

    11. Re:So what exactly does Apple want? by mr100percent · · Score: 2

      Maybe we should think of the bind Apple was in. You could give it an Aqua skin, so long as it would only run on OS X. They don't want it as a linux theme or Windows theme.

    12. Re:So what exactly does Apple want? by mj6798 · · Score: 4, Insightful
      Some of the most highly visible and successful applications on MacOS (QuickTime client, Finder) and Windows (Office, VC++, various media applications) violate the UI guidelines of those platforms in numerous ways. If users minded "inconsistent" UIs, they wouldn't choose to put so many different applications with inconsistent UIs on their desktops, under Windows, MacOS, or X11.

      And when it comes to Mozilla, you have lots of choices for UIs--the Mozilla engine embeds easily in other UIs, as Galeon, Skipstone, and QtZilla have shown.

    13. Re:So what exactly does Apple want? by RestiffBard · · Score: 2

      i thought the idea of mozilla was to get a good browser. not an application platform. well, now i can adjust my expectations for mozilla. they can now take all the time they want. I'll just use the gecko engine.

      --
      - /* dead coders leave no comments */
    14. Re:So what exactly does Apple want? by ZigMonty · · Score: 3, Insightful
      I don't mind people using their own widgets. It makes cross platform development easier. What pisses me off is when they do a piss poor job of it. I know this is a volunteer effort and I'm not criticizing them really, but if you do go the custom widgets way, please try to make your widgets look and feel like the native ones. The MacOSX version of Mozilla's custom widgets look like MacOS Classic. The scroll bars are especially bad.

      Also, platforms have interface guidelines - read them. Too often programs get the look right but the FEEL is very wrong. An example would be buttons. On a mac, buttons that are clicked but while the mouse is still down the mouse is moved away, should not act as if they were clicked. This is so a user can change their mind. Too many programs act on a mouse down when they should be acting on this mouse down, if still over button on mouse up then act combination.

      Linux users, and to some extent Windows users, are fairly used to programs that don't comply to the guidelines. Because of this, they often don't understand mac users griping about a program not being consistent. If you've never had consistency, you don't miss it. Mac users, on the other hand, are used to well written, compliant programs.

      Consistency is one of the things that the mac sold on in a time of custom MS-DOS applications. The mac introduced the idea of a universal interface toolbox that all applications should use. Developers embraced it because it made writing their apps easier by not re-inventing the wheel. Because of this, and a strict set of User Interface Guidelines, the mac is the most consistent computing environment. Consistency is important! Because of the macs consistency, a user can typically use a new program without so much as picking up its manual. Inconsistency is why Linux is having so much trouble being user friendly to new users.

    15. Re:So what exactly does Apple want? by uberdood · · Score: 2, Insightful

      > How many times have you been annoyed when you hit the wheel mouse and it didn't work right?

      Or more importantly, how many times have you hit CTRL-C/CTRL-V in Windows only to *NOT* have the application cut and paste.

      Standards are a good thing. You're right on the money.

      --
      "Population 1,656"
    16. Re:So what exactly does Apple want? by BZ · · Score: 2

      Well... it's a platform on top of which we have at the moment the following applications:

      1) browser
      2) mail client
      3) irc client
      4) AIM client
      5) addressbook
      6) whatever's on mozdev.org

    17. Re:So what exactly does Apple want? by EvlG · · Score: 2

      I disagree, because I really don't see so much difference between how Win32 widgets work versus OSX versus Mozilla that it poses a problem.

      To me, widgets are pretty simple. Click on buttons, expand drop downs, scroll through lists, type in text boxes, etc...

      I can do all of those tasks pretty easily, without even thinkin about it, in any of the environments I use.

      Thus, I prefer Mozilla to have its own widgets that work consistently (remember, the Web-as-a-platform implies consistent widgets in the browser, much as Java-as-a-platform does.) Expcting web designers to cater to each OS is a hindrance. The result of that assumption is designers catering to one OS, and one browser at that.

      Who really wants that?

  3. /.ed, it seems by wrong · · Score: 4, Insightful

    Slashcode really needs to automirror anything mentioned in a story that isn't set to expire...

    1. Re:/.ed, it seems by jeffehobbs · · Score: 5, Informative

      from the site, good news up top:

      01/09/28/12:41

      This morning, I finally talked to Apple on the phone. I admit that I over reacted to the whole situation. There was a forwarded email from my employer from Apple, which I misinterpreted. What Apple objected to was not Aquafying Mozilla, but rather the way I was doing it via emulation, thus not giving Mozilla users a pure Aqua experience. Apple is willing to provide information for creating real Aqua experience for Mozilla. Right now, my efforts are focused on an Aqua interface for Tenon's iTools, so work on Mozilla for the moment is in abeyance. I apologize to anyone that I have offended.

      regards,
      Eric

      01/09/27/22:11

      This evening, I went to visit /., and found myself on the front page of /.. There were mix feelings about my Aqua projects. I only wanted a browser that works well under Mac OS X, and looks like Aqua. Too bad, I am unable to share that joy anymore. I did not expect to get paid for fixing cocoa, but I felt bad that I helped Apple to write a interface library. Then I was denied to use this interface unless I used their library. In essence, why should I bother to help them with the interface when I am denied to use the interface. I just begin to enjoy working with Apple software, but Apple isn't making it easy for their developers. Anyways, I only hope that Apple would write cocoa UI for Mozilla, then I will not need this project. (OmniWeb is not good enough, yet)

      01/09/27/11:34

      You might notice that Aqua Mozilla was not updated recently, and the main reason was that Apple contacted my employer in attempt to shut down this project. After a few talk, I am forced to take down this project. Now I think of it, I went to Apple to test cocoa for Mac OS X 10.1, and found a drag and drop problem with NSPopUpButtonCell. They didn't even pay me for my effort, yet they try to shut down my project. Isn't that ironic? For you Mac OS X fans out there, if you want to use a good Mac OS X browser. You can only use IE or OmniWeb now. It sucks for us, but life goes on.

  4. Re:They want to see Mozilla running on OS X by asa · · Score: 5, Informative

    They want to see Mozilla running on OS X. That's why they don't care about an Aqua theme for Mozilla.

    Mozilla runs well on OS X. It's called Fizzilla and you can get nightly and Milestone testing binaries with the rest of the Mozilla builds at http://ftp.mozilla.org/pub/mozilla/

    --Asa

  5. Re:And Apple never "borrowed" from MS? by Darchmare · · Score: 3, Insightful

    Ever consider that Microsoft had advance access to Aqua and decided to make IE5 'fit' that appearance ahead of time?

    --

    - Jeff
  6. Re:And Apple never "borrowed" from MS? by k_187 · · Score: 4, Insightful

    yes well, I ripped this off from mackido.com (mmm, flamey goodness)

    1981 - 1983 (Lisa and Mac Development teams)

    * General User Interface
    * Mouse
    * Menus
    * Controls
    * Windows
    * Desktop Metaphor
    [1989 - Win31 first usable system but didn't get it working mediocre until Win95 - still not as consistent or good]

    * Files -
    * multi-forked filing system [WinNT 1993 - still not used]
    * long file names (with spaces & special symbols) [Win95, not as versatile]
    * automatic typed icons (type + creator) document centric filing mechanism [Win95, not nearly as complete or seamless]

    * Design and Programming [Win3 - 1989, not as versatile]

    1984

    * Desk Accessories (copied in IBM-compatible world as "TSR")
    * multitasking: Desk Accessories [Win3 - 1989, not as versatile]

    * Sensible System folder organization [Win95 - not as clean, consistent or versatile]
    * Dynamic, user-accessible system extension (fonts, INITs, control panels, DA's) [TBD]
    * Drag-and-drop Application installation [TBD]
    * fast and easy access to international characters [TBD]
    * User-extensible font manager [TBD]
    * Plug-and-play printing; page setup & print dialogs [TBD]
    * Built-in clock with backup battery; reliable file dating. [about 1987]
    * Sound
    * Built-in speaker, 4 voice sound synthesizer, full digitized sound samples [SoundBlaster about 1987, but it wasn't common until about 1989]

    * Speech
    * Speech synthesis (Macintalk). [SoundBlaster about 1987, but not as widely used and not a system function]

    * Floppy 3.5" floppy (400K) [about 1988]
    * with automounting and auto-eject. [TBD]
    * Also added a floppy disk cache [TBD]

    * hot-swappable peripherals
    * keyboard, mouse [1997 with USB, TBD popularized]

    * MacPaint, MacWrite, MacDraw [Win3 - 1989, not as versatile]
    * First person mainstream networked game (first person dungeon like game -- MazeWar, initially created at Xerox) [Wolfenstien or DOOM - 1992? far better graphics]
    * Mac128K was an Ergonomic All in one Machine, semi-portable [1983 Osborn, sorta, some Compaq's in about 1993]
    * Use of icons to label ports (all ports keyed to prevent mistakes) [1994?]

    1985

    * LaserWriter printer with Postscript (Apple also helped Adobe get off the ground as a company) [Win31 - 1991 was when Windows first supported Postscript, before then support was spotty]
    * Networking (plug & play, integrated -- AppleTalk/LocalTalk) [1993 / TBD, WinForWorkgroups offered some networking as "option", not as easy or as integrated. Win95 improves it -- still not as easy, or ubiquitous as MacOS in 1985]
    * Direct manipulation Resource Editor [TBD]
    * Desktop Publishing (actually came from Mac Application called ReadySetGo, then Adobe Pagemaker, also Scoop, Xpress and a few others at about the same time, because of what the Macs WYSIWG capabilities) [Win31 - 1991 was when it first started working well on PC's]
    * OOP / OOD (Object Oriented Design and Programming)
    * Object Pascal (later borrowed by Borland) [1993]
    * MacApp (first mainstream Object Oriented Framework, MS copied poorly with MFC) [1992 - MFC popularized]

    * Movable Palettes
    * Lifelike Interface [1994 - Bob]
    * (forget the name, but there was a Finder Replacement that had an actual picture of a desktop, with a little assistant. Microsoft copied this about 8 years later as "Bob").

    1986

    * Plug-and play peripherals (SCSI) - ability to handle volumes/partitions to 2GB [1995+]
    * Hypercard (simple object programming -- precursor to Visual Basic) [1990]
    * Hypercard (simple hypertext linking -- precursor to the Web) [1993]
    * First personal computer with 4MB linear memory space (Mac Plus) [1993 WinNT]
    * Kanjitalk
    * More versatile "Wavetable" sound manager [1989 SoundBlaster popularized]
    * Memory Modules (SIMMS) instead of installing RAM chips [1988 - 1990]
    * Dial in modem service. Apple create AppleLink communication service -- GE used the software to create AOL.
    * Scroll speed throttle for uniform user experience regardless of processor speed. [TBD]
    * ADB (Apple Desktop Bus): extensible, auto-config low-speed peripheral bus (precursor to USB) - [1997 with USB, TBD popularized]

    1987

    * Plug-and-play bus expansion (NuBus) [1995 PCI + PnP, 1997-98 popularized]
    * Multifinder application multitasking [1991 Win31, 1993 WinNT]
    * Ability to assign labels to files [TBD]
    * Multiple monitor support: single large desktop [1998, TBD Popularized]
    * Color QuickDraw, 256 color 640x480 graphics (same year as VGA with 16-color 640x480 or 256-color 320x200) [1991]
    * Accelerated video cards [1991?]
    * Full Page Display [1993]
    * Dual Page Displays [1991]
    * GWorlds (off screen graphics images used) [1992 - 1997, WinG didn't get working until Win95, and really working until DirectDraw]
    * Built in masking, antialiasing and Dithering of images (actually masking and dithering was earlier). [TBD -- Done by programmers]
    * Industrial Design: Snap Open Case (no screws) [TBD]

    1988

    * SCSI plug-and-play CD-ROM [1995 for PnP, not as easy or good]
    * Ethertalk
    * Superdrive, can read and write Mac, DOS, OS/2 files [TBD]

    1989

    * photo-realistic images (32-bit QuickDraw)
    * 32 Bit Clean OS and 32-bit clean computers (software patches fixed older machines, no BIOS replacements) [1993 WinNT -- 2000 with Win2000]
    * A/ROSE real-time operating system for smart cards [TBD]
    * Multiprocessing (using cards like YARC and Radius Rocket) [1993 WinNT -- 2000 with Win2000 to popularize]
    * Mac Portable, first mainstream portable with an integrated trackball and active matrix screen

    1990

    * Sound input [TBD]
    * Built-in Ethernet (Quadra) [TBD, usually a low-cost extra]
    * Publish and Subscribe and early work on Object Embedding (later to be borrowed and become OLE) [1992 - 1995]
    * Aural feedback for controls (Sonic Finder) [Win95]
    * Ability to assign custom icons to Finder objects [1989 through hacking, TBD]

    1991

    * Powerbook 100: first laptop with keyboard in back, trackball in front. [1993 - 1994]
    * TrueType outline font technology (licensed to Microsoft)
    * Balloon help (with contextual feedback) [1991 - Still not as versatile]
    * Built in File sharing [1992 WfW, Win95 popularized]
    * Robust aliases (unlike Windows' fallible "shortcuts" that came years later) [TBD]
    * QuickTime [1992, Authoring not Available until 1995]
    * Multimedia -- Apple created the term. They had been the first to integrate Sound, Speech, Text and Graphics (multiple medias), then expanded to include video (and later 3D) and pushed with CD-ROMs [1993 - 1995 until things worked right]
    * Virtual Memory [1991 Win31 - 1993 WinNT, 1995 to popularize]
    * Appletalk Remote Access [Extra]
    * AppleScript: application and system scripting [1981 poorly, 1995 VBfApps, TBD]
    * Integrated eMail [Win98]
    * Integrated Keychain (Security) [TBD]
    * Encryption and Security [1993 WinNT -- 2000 with Win2000 to popularize]
    * Network Browser [Win95]
    * Trash you have to empty (item in trash survive power down) [Win95]

    1992

    * Powerbook Duo: first dockable (e.g. "port replicator") but much more elegant [TBD]
    * Global text input support (WorldScript) [TBD]
    * ColorSync color matching [1999]
    * Built-in CD-ROM's [?? 1994]
    * Video Input - AV models
    * Integrated DSP [1989 NeXT, 1996 with MMX]
    * Industrial Design: Slide out Drawer [Some servers, rare]

    1993

    * Next generation speech synthesis
    * Speech recognition (Speakable Items) [1996 - Win95 add-on, 1997 as powerful add-on, TBD to be popularized]
    * Integrated telephony (Geoport) [Win98]
    * First PC with built-in TV
    * PDA [WinCE -- 1997 - 1998, but not as nice]
    * Handwriting Recognition (Newton) [TBD]
    * Gesture Recognition [TBD]

    1994

    * Powerbook 520: first widely-available laptop with trackpad.
    * Power Macintosh: PowerPC RISC chip [1993 WinNT, most RISCs killed, TBD to popularize maybe 2001 - 2004 with Merced/McKinley]
    * 68K emulation for seamless backward compatiblity. [TBD -- Alpha tries but not mainstream or as reliable]
    * Graphing Calculator: real-time equation visualization, 2D and 3D.[TBD]
    * MacOS on Unix (MAE)
    * "Most Recent" folders
    * Hierarchical menus
    * Windowshade (collapsable windows)
    * AppleGuide (help system with coachmarks) [TBD]
    * PC Exchange (cross platform file compatibility) [TBD]
    * Macintosh Easy Open (can open PC files)
    * DOS/Windows compatibility cards and emulation software
    * Threads [1993 NT, TBD to popularize]
    * TCP/IP support
    * Powerbook file synchronization [TBD]
    * Continuous speech recognition and input (Cantonese dictation)
    * Bento - Object Oriented Document model [TBD]
    * IEEE-1394 (FireWire) [1998 as option (Sony), TBD popularized]

    1995

    * QuickTime VR, Conferencing
    * Open Transport Networking (streams)
    * QuickDraw 3D [1994 OpenGL, 1998 to popularize with Direct3D]
    * Plug & Play PCI bus (PCI Only -- no ISA or older bus) [1995 Win95 was PnP support, general PCI earlier, PnP didn't work fully until 1997]

    1996

    * OpenDoc (Fully document centric interface model) [TBD]
    * Integrated Browser (CyberDog) [Win98]
    * Web as a data-type (CyberDog) [Win98]

    1997

    * Popup folders [TBD]
    * Spring loaded folders [TBD]
    * reorganized system folder [Still not as clean]

    1998

    * Sherlock full-text indexing and internet searching [TBD]
    * Titlebar icons to represent the folder itself for dragging etc. [TBD]
    * Appearance manager (Themes) [Limited in Win95, TBD]
    * Audio Themes (Sonic Finder finally ships in 8.5) [Limited in Win95, TBD]
    * Tear off Menu (Application Menu. Also Apple and NeXT merged, NeXT created them) [TBD]
    * Resizable Menus [TBD]
    * Customizable scroll bar behavior [TBD]
    * Integrated System Wide antialiasing [1996 Win95 OSR2?, Win98]
    * iMac - clear case, return of all-in-one, simplified design, ALL plug & play I/O, floppyless design [TBD]
    * USB (Universal Serial Bus): this is a copy of the Apple Desktop Bus (ADB). Apple was also the first to make it ubiquitous and standard.[Added in 1996, support in Win98, TBD popularized]

    1999

    * Industrial Design: Handles + Door [TBD]
    * AirPort -- Wireless networking made easy [TBD]

    --
    11 was a racehorse
    12 was 12
    1111 Race
    12112
  7. Re:Might make Aqua better... by Arandir · · Score: 5, Insightful

    The designers at BMW do not really want you painting their cars in hippie rainbow colors, adding neon underneath and gluing crap to the hood.

    But the designers at BMW aren't going to sue me if I paint the Virgin Mary on the hood!

    --
    A Government Is a Body of People, Usually Notably Ungoverned
  8. But I say, "Nay nay." by rice_burners_suck · · Score: 2, Interesting

    This upsets me a little. I understand where Apple is coming from on this issue of "look-and-feel" because I can wholeheartedly respect the amount of work that goes into a successful user interface. It is very difficult to get everything working correctly, seamlessly and most of all... I hate it when I forget words. The word I wanted to use means that something can be operated with little instruction, using only common sense. You get the picture.

    IMO, the user interface is the most difficult part of the system to make. There are so many rules and exceptions to those rules, and components have to interact with each other in ways that really don't make any sense. Design from a user's perspective is difficult, especially if you're trying to be (I hate to use this cuss word) "innovative." Design from a programmer's perspective is hell. Implementation is nothing short of a nightmare.

    So when they get upset over someone using Aqua on a system that isn't Mac OS, I can totally understand. However, on the other hand, if I understood this story correctly, the Aqua interface was implemented as a theme FOR Mac OS. Now what upsets me is this: yes, I respect the work they put into Aqua, but they, on the other hand, clearly do NOT respect the colossal amount of work the Mozilla folks put into their browser. Why should it matter to Apple what Mozilla does? If Mozilla was a commercial product, and source code was not available publically, would Apple ever know or care how it was implemented? They say they want to be a part of the open source community and stuff, but I say "nay nay."

    As a side note, I honestly prefer a simple command line interface, because it's so much easier to make and use. Personally, I don't know why the Windows and MacOS interfaces are mimicked so widely as they're clearly far from optimal. Windows is good for nothing. MacOS (I've used versions 7.x through 9) is great for running graphical applications where 99% of the input comes from the mouse. Its keyboard interface, on the other hand, is terrible IMO--even if you know all the shortcut keys. I might give OS X a try someday, just because it's based on BSD (I swear by the BSDs). Personally, I like to use the keyboard for 99% of the input, and the mouse as a supplimentary input device for when it's more convenient to click. I remember shipping air freight through Delta. Up until six months ago or so, they had old computer terminals with keyboard-only interfaces and old-school textual displays. The folks who worked there frankly didn't care how the text screen looked as long as it got the job done. And it did. One day, I stroll in there with a few packages and their system was changed... to Windows. It was probably one of those glossy sales presentations that got those things in there. The employees weren't even told about it--they came to work that day and their system was different, and there were no instructions. I remember how the guy had to click on a hundred different things with the mouse, move to the keyboard and punch in a few things, move back to the mouse and click on another hundred or so pretty pictures... in short, what used to take a minute or two by pushing a few keys now took about ten minutes, with most of the time spent clicking on things and moving between the keyboard and the mouse. Not only did Delta spend Lord-knows how much money on that new "system" but they lost productivity too. For what?! To be "user friendly?" To be "easy?" (Like AOL.) Why not just use the alleged "unfriendly" system, and just teach new employees the keys before putting them in front of that thing. The point of this side note is that graphical systems were originally invented for doing graphical work. Nowadays, this graphical system is used in places where a text one would actually be a better choice.

    1. Re:But I say, "Nay nay." by passion · · Score: 2

      It is very difficult to get everything working correctly, seamlessly and most of all... I hate it when I forget words. The word I wanted to use means that something can be operated with little instruction, using only common sense.

      intuitively?

      some people might also consider that to be a "usable" element.

      --
      - passion
    2. Re:But I say, "Nay nay." by rice_burners_suck · · Score: 2

      Yes! That's it: intuitive! Thanks!

      I hate when that happens: when the word is on the tip of my tongue but I don't remember what it is... and the harder I try to remember, the more it escapes me. I think it'd be cool if there was a reverse-dictionary: one where you look up the definition and get the word. A thesaurus wouldn't really work, because all the words of the English language are in it except the one you need. No... maybe a computerized version of a reverse-dictionary will be possible in a few years. Just type in a bunch of words that mean something similar and the computer will search for a word like that. Actually, it's probably not possible. :-( Oh well.

  9. Boycotting Apple? by 2nd+Post! · · Score: 2, Troll

    Man, is there even enough consumer support for people *to* boycott apple?

    I mean, I own a Mac, but I was wondering how many other people do...

  10. Priorities by daceaser · · Score: 3, Interesting

    What worries me most is Apple's sense of priorities. They seem quite happy for someone to re-implement QuickTime for Linux as a third-party, yet they sue someone who creates a skin that looks like Aqua.

    Does Apple think that colourful buttons are more valuable intellectual property than their video layer which they've spent the last 10 years developing?

    Not that I mind QT for Linux, but the point stands. They'd rather have people buy a Mac for the shiny interface than the powerful graphics tools, or other _real_ technological assets.

    I'm an Apple fiend, but sometimes the bods at Apple really leave me wondering...

    --
    -- There are three kinds of mathematicians: those who can add and those who can't.
    1. Re:Priorities by znu · · Score: 2

      You picked a bad example. Nobody is really reimplementing QuickTime on Linux. People are trying to reimplement QuickTime playback, but QuickTime is far more than that. Apple wants media playback formats to be as open as possible (which is why Apple is so supportive of MPEG-4), because the company feels it provides the best tools for creating such media (stuff like Final Cut Pro), and content creators benefit from standardized distribution formats.

      Aqua, on the other hand.... I don't see how Mac users benefit from having pseudo-Auqa interfaces on other platforms, or pseudo-Auqa interfaces on OS X, rather than the real thing.

      --
      This space unintentionally left unblank.
  11. Re:They want to see Mozilla running on OS X by owenc · · Score: 3, Informative

    I think what he means is a cocoa native web browser using Gecko. Right now Mozilla for OS X is basically the OS 9 app with Aqua Support tacked on

  12. Re:Speaking of K-meleon by daviddennis · · Score: 2

    I believe that was invented by the Omni folks for OmniWeb, which was developed especially for MacOS X and is, therefore, entirely Aqua compliant :-).

    I just wish its JavaScript worked well; I have to use IE (for MacOS X) to see JavaScript-crazy sites, of which there are all too many in the world :-(.

    D

  13. these are long-known problems by Anonymous Coward · · Score: 3, Insightful

    All of this stuff was discussed a year or two ago on MozillaZine. The intellectual property issues were flagged and pooh-poohed, the impossibility of matching the Aqua widgets and behavior with XUL was discussed, and the problems with ignoring the native widgets in favor of a custom widget set were argued endlessly.

    None of the custom-widget defenders could find any particular examples of required CSS behaviors that couldn't be done with native widgets. In fact the people who were claiming there were problems of this type seemed very ignorant of the graphics layer capabilities in MacOS (9 and X) and in Windows as well.

    The fact is Mozilla went down the wrong path, a bunch of us tried to get them to reconsider, and they just wouldn't budge.

    So surprise, everything we predicted has now come to pass.

    Sigh

  14. What is OS X? by 2nd+Post! · · Score: 5, Informative

    If you want your shiny blue widgets... you can have XP.

    I'm a little more scared of Microsoft, .NET, Hailstorm, Windows Media Player, DirectX, and the XBox, all under the same roof...

    What evils lurk in the Microsoft Future?

    Aqua is *the* OS X experience. It's more than just widgets; more than just a semitranslucent title bar, or glassy buttons, and drop shadows.

    It's about an uncluttered 'Start bar' (called the Dock). Each App gets a single entry in the Dock, with access to the multiple open windows available through a single 'Window' menu; or if you right click on the app in the Dock, you get a list of the available windows.

    It's about a the Apple Menu and a single menu, instead of a menu per Window. This has carried over from the previous OS 9; the foreground App, with User focus, controls the single available menu bar. There doesn't exist a menu for each window (which not only takes up screen real estate, it provides for too many available targets when all you use is a single target) but only a single global menu bar.

    It's about minimizing screen clutter and noise. Instead of borders around each window you get a drop shadow; you delineate forground from background apps because the foreground App casts a shadow behind it. The background apps also have transparent title bars. You don't get every open Window listed in the Dock-the OS X Start bar. You don't get a menu bar attached to every window. You don't get a empty grey parent window containing all the child windows of Word or Photoshop.

    It's not perfect, certainly, and it is, after all, the vision of a single person, a single company, quite unlike Linux and the Open Source/Free Software community.

    There are little things, but mostly it's coherent. Most of the OS widgets are grayed out and monochromatic except when they are in focus or require attention; good visual cues. If you mistype your password when logging in, the login window shakes itself to both clear itself and to let you know you've failed to log in.

    It's really, really, nice. Too bad most people are too cheap, or cannot otherwise afford, to play with Macs.

    1. Re:What is OS X? by NeMon'ess · · Score: 2, Interesting
      Your description sounds very interesting and I would like to play around with aqua while someone explained the features to me as well as you did. All of your descriptions led me to one conclusion however; aqua still isn't perfect for multitasking. Comparing Windoze to a desk, I would say it lets me get out plenty of items from the drawers, but the drawers remain open until the item goes back. Aqua lets me take out all the items but closes all the drawers until the items go back, so to put something back I open the drawer again then close it. I think I'm missing something though because that would be too cumbersome. I never really cared for the unified top bar because it seemed like it took more effort to switch apps or navigate instead of having everything laid out in front of me.

      I'm assuming I can customize Aqua however so plenty of stuff stays out in front? Bottom line Windoze is for those whose real desk is a mess but they know where everything is, while Aqua is for neat-freaks.

      Feedback?

    2. Re:What is OS X? by itachi · · Score: 2, Interesting

      I'm assuming I can customize Aqua however so plenty of stuff stays out in front? Bottom line Windoze is for those whose real desk is a mess but they know where everything is, while Aqua is for neat-freaks.

      Oh, aqua is for both. The dock can be both the cluttered, every single windows represented (1). It can also be really really tidy. I'm almost to the point where I prefer it to NeXT/After/GNUstep, although it would need autoraise to really win me over completely. The parent post is right though, it's easy to tell what window is live, and the dock is much nicer than the start bar, once you get used to how to use it efficiently. It still needs work, though, and it is getting better with revisions. There is not a lot of customization available with 10-10.0.4. (2) 10.1 looks like it doubles the amount of customization that you can do from the GUI, and of course there have always been lots of 3rd party GUI toys for the Mac. It's really a nice GUI.

      itachi

      (1) - except, ironically enough, the window in front. Minimized windows live on the right side of the dock next to the trash, meanwhile applications that are running live on the right
      (2) - not entirely true, there are some undocumented changes you can make through the CLI. Mostly picking between widget options, as far as I've seen, rather than turning widgets on and off, so tuning the GUI for speed vs. glitter is not quite an option yet.

    3. Re:What is OS X? by 2nd+Post! · · Score: 3, Informative

      Hmmm, you already have a pretty insightful response, so here's my addendum.

      You could have 15 Netscape windows open. They take no space on the dock except for 1 Netscape App icon.

      Minimize all 15 Windows (there is that option in the 'Netscape' menu) and you have 1 Netscape App icon and 15 Netscape window icons, each a tiny 'live' representation. Supposedly running Quicktime windows keep running even when 'minimized' too

      The dock has a separator to divide applications and documents. So it has everything the Windows start bar has, and more. The foreground window cannot be lost in the Dock because it doesn't show up in the Dock unless it's minimized. The application can never be lost because it's always in the same place in the Dock.

    4. Re:What is OS X? by Telek · · Score: 2

      Windows XP has this feature too, BTW.

      If you have many of the same application's windows open they will collapse into a single window icon on the bar, you click on it and get a list of all of the windows.

      And for everyone else, the second that I see "windoze" or "M$" or "micro$oft" I stop reading your post. If you can't even have the maturity to type the names properly...

      --

      If God gave us curiosity
    5. Re:What is OS X? by Arker · · Score: 2

      Most of this stuff is fine, lots of good ideas and UI nuances. Which are already being ripped off by various competitors, including of course most prominently MS, in their usual half-conscious, never quite grokking the idea way. And Apple is understandable trying to prevent this from happening. Understandable that they would want to at least. The problem is they can't. Oh, sure, they can scare private citizens working on open source projects for the common good with a few cheap threats, but that's not going to do jack about the real threat.


      Back to their interface, though, it is really disappointing to me. Yes, there are quite a few nice features as I always expected (given the origin of the codebase it could be assumed,) however two decisions they made strike me as utterly hideous - the whole overdone gumdrop pastel nonsense, along with the decision to adopt the MS window control widget layout (after all these years of correct criticism of it) stick out like a sore thumb in an otherwise fairly well done gui. Why they made these decisions I'll probably never know. The silly gumdrop crap I guess is supposed to drive sales of new hardware, but the window widget layout is truly incomprehensible. Unecessary animations, unecessary and basically useless drains on the system resources may drive hardware sales I suppose, but they certainly are not good things from a UI design point of view. And I know that the points may sound fairly minor, but when a product has that much evident attention to the UI to begin with, those things stick out like the proverbial sore thumb.


      This is supposed to be an improved NeXT/Mac fusion, yet in this particular respect both NeXT and Mac did things in a defensible way, while MacOS10 doesn't. There is just no defensible reason to place a button with any other function next to the "kill" button from a UI design point of view. Mac people have talked for ages about how incredibly stupid it was for MS to do this (and they're right) and now they turn around and do exactly the same thing? I just don't get it... has Jobs got alzheimers or what?

      --
      =-=-=-=-=-=-=-=-=-=-=-=-=-=-
      Friends don't let friends enable ecmascript.
    6. Re:What is OS X? by MaxVlast · · Score: 2, Informative

      White BG with grey lines that make it hard to tell a B from a 8

      Not a problem.

      Aliased fonts and small sizes

      Fixed in 10.1

      Big, candy-like buttons, that take up screen space

      User-configurable.

      no text on the docker without rolling over a icon

      What would you prefer? A taskbar? If you can't recognize your apps, you should pack up and go home. If you need a reminder, it's there.

      GUI controlls that rely on color, or position when using the graphite theme

      Bzzt, wrong. There are graphics.

      taking away customization from the start menu

      Huh? It isn't windows. (Hint: there is no start menu!)

      Pay closer attention next time.

      --
      There should be a moratorium on the use of the apostrophe.
      Max V.
      NeXTMail/MIME Mail welcome
    7. Re:What is OS X? by DavidRavenMoon · · Score: 2, Interesting
      I'm assuming I can customize Aqua however so plenty of stuff stays out in front? Bottom line Windoze is for those whose real desk is a mess but they know where everything is, while Aqua is for neat-freaks.

      You can, if you want, have one window from five different apps open on the screen next to each other.

      The way the classic Mac OS works, is if you click on a window in the background (since you can see them, as there is no patent window for the app) it would bring all the open windows from that app to the front, covering all the other open windows. To bring all the windows of one app to the front in OS X you click on that app's icon in the dock. You can also right click the icon to see and choose which window you want, or use the Window menu in the main menu bar.

      In OS X clicking on a window in the background, brings only that window to the front, and not all the windows from that app.

      You can hide an app and all it's windows, and it's icon in the dock gets grayed out, or you can minimize the individual windows from that app (and when you hide the app... they hop over to the apps icon...). Minimized windows show up as dock icons of the window. Moving the mouse over the icon tells you the name of the window.

      I really enjoy Aqua. I use Mac OS 9.1 and NT 4 at work all day, but at home I mostly stay in OS X... can't wait to get the 10.1 update!

      --
      -- if it was so, it might be; and if it were so, it would be; but as it isn't, it ain't. That's logic - Lewis Carrol
  15. Aqua, and Mac Widgets by mindstrm · · Score: 5, Informative

    You know.. some things just don't work that well in an anarchy. Witness the failure of the unix desktop. Now.. I'm not slamming it, or trolling, I use it every day, and have for years... but unix still lacks a coherent desktop, even one as poor as Windows has. Why? Because nobody dictates what anyone else has to use. Now.. I'm not a fan of dictatorship.. however...

    Apple has a point. They have *always* insisted on using proper API's for the Mac. Why? Because it ensure things WORK, and ensures they can bring out future versions of their OS without breaking stuff. IT's a GOOD thing.
    Unlike MS, they don't use their proprietary widgets to corner the application market; the information on how to use them is free to all, no royalties.... no licenses (afiak).. nothing.
    All they insist upon is that you use them. AND YOU SHOULD.

    1. Re:Aqua, and Mac Widgets by Lumpy · · Score: 3, Insightful

      Ok I'll bite...

      What exactly do you call Gnome and GTK? I have it in use by morons, idiots, and people that seem to have an I.Q. of less than 40 (sales people, Marketing people, Human Resources people) It is very useable, very effective, and hamper's no one here. The transition period was 2 days for all employees. Everyone understood that the foot was start menu and weren't crying in their hands because the foot scared them.

      The transition to staroffice was as smooth also. (openoffice would have been smoother but we cant use beta office apps) Email is as easy except for people bitching that they cant just click on the attachment to run it. "I respond with GOOD! I finally stopped you people from doing that!" then they shut up, copy to desktop and then open it.

      If the linux desktop is a failure, can you please show me why so I can tell all the employees here to stop using it.

      Coherent desktop.. Gnome is a 96.95% copy of the windows desktop. Windows from version to version change their desktop to add confusion (why does network neighborhood change it's behaivoir from NT4.0 to 2000? is that coherency? how about the 40 other basic items that no longer work the same or in the same place?)

      Over the past 3 months, the Unix/linux desktop has surpassed windows. and every test I try with non-linux users (windows-heads) is sucessful and they like it. (espically ximian which acts more mac like than windows like)

      I can see your point on Widgets... but forcing mozilla and openoffice to use GTK will piss off the KDE people.. which will piss off the blackbox people... etc...

      my biggest gripe is dummies that make the copy function something other than CTRL-C and paste something other than CTRL-V. if you cant make hotkeys standard then leave them out, if you cant use standard widgets then dont program....

      If you cant use the standard OS then ...
      The important thing is that Linux/Unix is like NT4.0 regular users are too dumb to manage it , but they can use it well if the managing personell configure everything and choose software that isnt confusing. (Using davewidget 4.3 with new spinning icons)

      --
      Do not look at laser with remaining good eye.
    2. Re:Aqua, and Mac Widgets by Lumpy · · Score: 2

      and coupled with current massive cost cutting measures from corperation standpoints you'd get nothing. you dont need a mac. you need tools to do your job a SUN or Intel box can do as well as any MAC and are used every day. there are no mac's here, we eliminated all of them 2 years ago and the creative department whined then... funny how everything still works and things are getting done even today with even tighter deadlines and less employees in that department did their productivity suffer? no. The point is that anyone can make the transition to a different desktop instantly, humans are funny that way, we can recognize things that dont look the same. we can easily adapt. Anyone that would say " I have to have it the old way or I cant work!" is lying. They can do it and they will do it. It's laziness that makes us want what we've used all along. and that laziness will only be removed by forced changes (as if any IS/IT change is otherwise!) you cant leave betsy's computer running windows 3.11 because she likes it. you piss off betsy and give her what is the company standard.

      --
      Do not look at laser with remaining good eye.
  16. Re:They want to see Mozilla running on OS X by mr100percent · · Score: 3, Interesting

    Yes, it RUNS on OS X, but has noting else in common. The menu bar is pretty bare, the widgets are ugly looking X-windows bareness. A menu is jammed in every open menu, giving it the worst aspect of XWindows and Windows, as global options aren't in the global taskbar.

    My only concern is that the OS X version might be slower to be updated, as platform-specific features to use Aqua are added.

  17. Wait a minute by infiniti99 · · Score: 2

    Why does Apple approve of Qt/Mac then? I brought this up in the previous article. Qt/Mac uses an emulated Aqua style, just like all QStyles.

    For Apple to say now that they don't want Mozilla using an emulated style makes zero sense. Unless Apple thinks that the Mozilla team can't do it right. According to a recent interview with Trolltech's president (quoted in this post), Apple worked with Trolltech in Qt/Mac development, maybe to ensure it is done correctly. Either that or Apple specifically gave Trolltech permission through a business deal.

    I think there is something we are missing here.

    1. Re:Wait a minute by Spy+Hunter · · Score: 2
      I think the real problems with a Mozilla Aqua theme are:
      1. Mozilla themes are just pixmaps and can't do as much as QStyles, so they won't fit in very well at all (don't the buttons in Aqua pulsate and stuff?)
      2. A Mozilla theme is cross-platform by definition, while the QT Aqua style is binary-only for the Mac.
      Both of these problems could be solved by a native Mozilla port to Aqua, but it would involve a LOT of work.
      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
  18. yet another chance for discussion by rebug · · Score: 3, Informative

    ruined. it's a damned shame how some people just can't handle even the smallest of freedoms. Apple has always been protective of their designs. Can you blame them? Ever since the justice department decided that it's ok to rip them off, anything they design is fair game for poachers.

    --

    there's more than one way to do me.
    1. Re:yet another chance for discussion by roffe · · Score: 2, Informative

      actually, it's not a matter of _anybody_ being allowed to rip them off - Microsoft is allowed to, and that's because Apple _gave_ them that right in contract.

      Jim Carlton's book on Apple gives the story: in order for Microsoft to port their apps to the Mac, they were given the right to copy Apple's look-and-feel. Apple sued because they felt Microsoft went too far in their interpretation of the contract, but they didn't - the contract, ubelieveably, essentially gives Microsoft unrestricted freedom.

      --
      -- Rolf Lindgren, cand.psychol
  19. Re:And Apple never "borrowed" from MS? by BitwizeGHC · · Score: 2

    Flamey goodness indeed. Turning to mackido.com for objectivity in computer innovation is a bit like asking the Taliban for an objective stance on women's rights.

    --
    N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
  20. Apple Has More Than Guidelines by jone1941 · · Score: 2, Informative


    Apple's point translates further than just using widgets. Anyone who has used their "Interface Builder" knows that it attempts to force certain things on the developer. There are 'strict' guidelines about how things should line up and how far they should be from the edge of the screen etc etc. The interface builder does more than suggest, it actual has 'snap to' rulers and has very specific rules about window resizing.

    Basically they figured that if they are going to have a design spec for an application they might as well make it easy for the developer to follow.

    --
    Fear trumps hope and ignorance trumps both
  21. Re:And Apple never "borrowed" from MS? by mj6798 · · Score: 2
    yes well, I ripped this off from mackido.com (mmm, flamey goodness)

    I'm not sure what you are trying to show. Almost every item on your list was invented at institutions other than either Microsoft or Apple, often decades earlier. Apple copied a lot of other people's technology and put it on the Mac on premium priced hardware, and Microsoft copied a lot of other people's technology and put it on Windows once PC hardware caught up.

    Microsoft didn't need to copy from Apple, they just copied from the same people Apple had copied from.

  22. Code exists to do this in the mozilla tree by lordpixel · · Score: 5, Interesting
    Mac OS will create a button for you, if you ask it, but, like most modern OSes it will also just "draw" a button without any of the logic behind it, there is an API for that sort of thing.

    So you get the look of a button without any of the native widget.

    I once spent some time with a guy at netscape implementing a new protocol which basically took advantage of that.

    You wrote something like:

    theme://button?title=OK

    and it returned a GIF containing a perfect looking OK button in the present Mac OS theme, be that Platinum on OS 9 or Aqua on OS X.

    The code to do this is here:
    http://lxr.mozilla.org/mozilla/source/netwerk/prot ocol/theme/

    Finshing this work would allow very high quality Aqua themes, as it wouldn't be "as" emulated. The OS would be drawing all of the controls.

    This would also satisfy Apple - they don't really care about Aqua themes so much as making sure those themes *only* work on Mac OS. As the theme: protocol needs native code to work, it will only run on Mac OS (9 or X)

    The theme protocol might also be needed on Linux (window manager theme support) and to do Windows XP properly.

    --

    Lord Pixel - The cat who walks through walls
    A little bigger on the inside than out

  23. Fair Enough by PhunkySchtuff · · Score: 2, Informative

    Apple seem to be saying "Don't use a skin to emulate Aqua, as the appearance, and behaviour, of Aqua is subject to change [may just be small tweaks, but changes none-the-less]. If you're going to have an app that looks like Aqua, damn well use the proper way (ie APIs) rather than making bitmaps that just happen to look like the current implementation of Aqua."
    Apple have a very long history of trying to make sure apps on the mac all behave the same way (wherever possible). This leads to a smooth user experience. Apple also don't charge you the earth to get their guidelines. Go see This Page for an example of the excellent work Apple have put into the field.
    I don't have a problem with someone insisting that something is done the correct way. It's less likely to break further down the track and is going to be easier to adapt to any changes Apple make to their [First Generation] Aqua GUI.

  24. Project on Sourceforge by Tachys · · Score: 3, Informative

    The Q.Bati seemed to be trying to put a Mac OS X interface in front of gecko. Unfortunately it seems to be vaporware :(

  25. Re:And Apple never "borrowed" from MS? by ckd · · Score: 3, Informative
    But who says Apple never ripped off MS? The custom toolbar in IE 5 for Mac was taken and tweaked to be used in the custom finder for OS X!

    And that was borrowed from NeXTStep's File Viewer's Shelf, which dates back a lot farther than IE5/Mac. Who's zooming who?

  26. Re:Might make Aqua better... by sarhjinian · · Score: 3, Insightful
    So please explain to me why Microsoft is vilified on the site because they refuse to let OEMs change the look and feel of the Windows desktop? What your saying is that it's OK for Apple but not MS?

    Because Apple doesn't have OEMs making Macintosh clones. Apple makes the hardware and the software. If Apple still allowed clones (which, depending on your opinion is either a good thing or bad thing) then maybe this arguement would be valid.

    Apple is very much concerned with selling a "tight" system. Apple sells a branded product; as a result, look and feel is more important to them then, say, Dell (who sells a commodity product where a consistent interface takes a back seat to power and/or price).

    Now I'm not sure if its such a good idea for Apple to lean on developers who produce products with a non-standard (or just plain ugly) interface. Its really up to the developer to make his/her/their product look like a Mac app, especially since Mac users are more intolerant of un-Mac like products.

    On the other hand, maybe Apple should've slapped Microsoft down for Word 6 for Macintosh. :)

    BTW, I thought MS fought the look and feel battle with Apple ages ago when Apple took them to court over Windows looking like Apple's OS. Didn't the judge rule in favor of MS, and wouldn't that still apply to everyone copying Aqua's look and feel?

    That suit was more generic: it was more like "the concept of a GUI". Protecting Aqua is about protecting a brand or an image. Its the same thing that prevents one car manufacturer (Daewoo, for example) from rampantly poaching another's body design (say, Porsche's Boxster). What Apple wants to avoid is

    • Someone outright cloning the whole interface (and maing money off Apple's design and interface work)
    • Making an application that weakens Aqua as an asset (either by using it outside the Mac OS or by creating an Aqua app that grossly violates the UI guidlines and makes the system harder to use).
    That's what Apple wants. Whether this is wrong or right depends on your own views.
    --
    --srj/mmv
  27. Re:i didn't think you could by 2nd+Post! · · Score: 2, Informative

    anja has it mostly.

    You can 'ctrl click'
    You can 'click' and hold it for half a second
    You can use a two button mouse and right click

  28. I haven't seen this yet... by SkullMac · · Score: 4, Insightful

    Its not that fact that he was trying to "Aquafy" it through "emulation" that pissed off Apple, its the fact that this Aqua theme would be available to users on other platforms (Linux/Windows).

    Apple's aim with Aqua is brand identiy. They want Aqua instantly associated with Apple. They don't want there to be any question about it.

    This follows the same logic they used when they sued three companies over iMac knockoffs. They wanted the "look and feel" of an iMac to be instantly recognizeable and associated ONLY with Apple. Even if you thought the iMac was butt-ugly, it stood out from run-of-the-mill beige PCs. It cried out that the Mac was alive and well, and assured that people would remember the design.

    Granted, there have been a number of iMac inspired computers, but Apple has choosen its battles well.

    The same goes for Aqua. I've seen a number of "Aqua inspired" designs, but the ones where an author obviously went in and copied and pasted Apple's UI elements into a theme file have all been brought to a quick end.

  29. Re:i didn't think you could by dhamsaic · · Score: 4, Informative

    neither of 'em got it *quite* right :)

    i'm typing this from internet explorer beta on mac os x 10.0.4 on my new dual 800mhz g4 system (pretty zippy)...

    mac os is pretty usable with 1 mouse button, but i appreciate it infinitely more with 2. (note that i'm talking about os x - i'm not really interested in os9 - another unix geek here, but one that's not so cheap that they didn't just get a new ibook and g4 tower)... the way it works is like this:

    with a 1 button mouse, ctrl+click is the equivalent of the windows right-click. it brings up contextual menus.

    in some applications (i.e., internet explorer), if you hold the mouse button for about a second, the contextual menu pops up. they did this as a convenience - it is not standard across the gui (although it should be).

    if you have a 2 button mouse, right clicking will do the equivalent of the ctrl-click, which is bring up the contextual menu. this *is* standard across the gui, which is really really cool.

    now, in os x, some other things you *can* click-hold for the menu (like app icons in the dock), but right clicking makes this faster. so it's all really a matter of preference. if you prefer the apple pro mouse (and it is quite nice - i plan to keep it in my laptop bag for use on my ibook), you can certainly very easily get around the operating system. but if you'd like a little more power, pick up a two button mouse (i'm using an intellimouse explorer for the time being, until i get another boomslang) - that will do the trick for you.

    i might as well also note this: scroll wheels now work in mac os x *kinda*. in mac os 9, if the drivers for the mouse have been released (and most companies have), the scroll wheel and right mouse button will work anywhere. in mac os x, while the right mouse button is default, because of different widgets in the different types of apps, and the lack of drivers for os x (though some day, i imagine), the scroll wheel doesn't always work. here's how it goes:

    in carbon apps, which are written to run both under os 9 and natively under os x, the scroll wheel will *not* work. in cocoa apps, which are written for mac os x natively and will only run under mac os x apps, the scroll wheel *will* work. so, for instance, my scroll wheel works in Mail, Internet Explorer... but doesn't work in Finder (?), iTunes, etc.

    that's the scoop on mousing under os x (i hope :) )

    --
    Every once in a while I like to masturbate a new word into my vocabulary, even if I don't know what it means.
  30. Already Gone OT was Re:What is OS X? by Arker · · Score: 2

    And for everyone else, the second that I see "windoze" or "M$" or "micro$oft" I stop reading your post. If you can't even have the maturity to type the names properly...

    Well I can type out those names "properly" just fine - the quality required is not maturity. At the same time I rarely do. Because giving them the names that the Co. behind them prefers grants them an illusion of legitimacy they do not deserve.


    Want to talk about maturity? Whatever you may think of my opinion of Microsoft, it is certainly mature. I converted from Apple to DOS at version 3.0. (Before I used Apple I hacked, in the oldest meaning of the word, involving soldering irons and opcodes, on hardware I'm sure you've never heard of.) I've used every Microsoft OS since DOS 3, either personally or professionally or both. I've had the time to study the MS way in action, over many many years and many many upgrades. And I don't think they deserve the courtesy of typing out there name "properly" on a regular basis. If that means you won't read my posts... oh, hurt me. Your choice, your loss.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  31. [OT]Re:Quicktime by greenrd · · Score: 2
    Yes, QuickTime Player 4.0 was not only gratuitously non-conformant, but an all-round atrocious design. One of the worst ever examples of gloss winning over usability. And Apple still doesn't seem to have admitted its gross errors.

  32. Okay.. I'll bite back. by mindstrm · · Score: 2

    As I said.. I'm not knocking it. Sure... gnome or kde are decent desktops. Sure they are. But they are not A STANDARD. There are TOO MANY STANDARDS for unix.. and that's why the desktop is just not as friendly as it could be. Sure... gnome is great.. but does *everyone* write gnome apps? No, hardly. Same for kde.

    I'm not saying a particular desktop is no good.. only that, in general, there is no proper standardization. There are plenty available, yes.. but the community does not agree.

  33. Please let me clarify. by mindstrm · · Score: 2

    I'm not saying that Gnome or KDE or (insert new desktop project here) sucks, or that it's not good enough. I use both, and they are fantastic. Yes, you can get your users to use them. They are good.
    But there is still too much variation in the unix world for the desktop to be truly standard. Yes, there are lots of great potential standards.. but the community at-large doesn't pick one. I mean.. in linux, it looks like gnome will be it eventually, maybe... but still. What should a linux developer use for his apps? Gnome? Kde? All? How do you pick?

    I'm also not saying that Apple isn't being a bully.. I'm not speaking as to whether, legally, they have a leg to stand on with their 'look and feel' stuff.

    What I'm saying is that I agree wtih the concept that certain things, if dicatated properly, should be controlled centrally. If they say these are the widgets you should use for writing apps, it keeps the playing field level and fair. Apple doesn't hide things from you, or keep some secret for themselves so they can make better apps than you.. that's Microsoft's ballgame...The devloper kits are free.. and Apple has a very good GUI.

    To the guy who talks about apple telling people to upgrade their apps to the new OS for the new hardware? GOOD. Otherwise, you end up with the god-awful mess we have with windows, where nobody is sure exactly what will run where.. or exactly what a new upgrade will do to their application.

    And if you use their API's, such requests are easy.

    If apple can exert a bit of pressure, no matter which way, and get people to stick to the same desktop interface.. good for them.

  34. Re:Anarchy or democracy? by mindstrm · · Score: 2

    Right. You can. I'm not trying to take that away from you.
    I'm just pointing out... that the very freedom you talk about is why every unix desktop app doesn't work with every other one, why drag and drop doesn't work as transparently and full-featured as it does on windows or a mac, and why we have so many different desktop standards, and hence, why potential developers are wary of using anything but good old Xlib.

    I'm not saying we should abandan this freedom.. it's great.. it's what it's all about... but there are consequences as far as marketability. Linux doesn't exist to be marketed... that's the difference between Linux and OS-X. Apple needs to market it, which means they need to be more careful. They hae to be accountable.

  35. Re:And Apple never "borrowed" from MS? by jchristopher · · Score: 2
    - Hindered by using only one menubar instead of every application having its own menubar in the window

    I'd argue that this is a benefit, and the "right" way to do things, not a problem.

    Currently I'm a Windows guy by necessity, but the way Macs handle the menus is way better - the menu is always at the top, so it's easy to jump to it with the mouse, and you can't overshoot it, since it's at the top. Using the "windows way" I'm always overshooting windows and switching apps unintentionally.

  36. Subtle UI differences that make Macs easier by yerricde · · Score: 2, Interesting

    you dont need a mac. you need tools to do your job a SUN or Intel box can do as well as any MAC and are used every day.

    The Macintosh interface has subtle features that make things more efficient. For example, to access the menu bar on an interface patterned after that of the Mac OS (mac or kde2), I can just flick the mouse upward; the top of the screen keeps my mouse pointer in the menu bar. To access the menu bar on pretty much everything else (windows, gnome, irix, cde, etc.) where the menu falls inside the window, I have to aim for a tiny portion of the screen; aiming in two dimensions instead of one slows me down about 500 milliseconds per menu access, which adds up rapidly over a work day.

    --
    Will I retire or break 10K?
  37. I associate Aqua with Mattel and Nintendo by yerricde · · Score: 2

    Apple's aim with Aqua is brand identiy. They want Aqua instantly associated with Apple.

    Sorry, I associate the word Aqua with "Barbie Girl" and Mattel toys, and I associate the look of words written on blue vitamin pills with NyQuil products and the game Dr. Mario. In fact, I once did an Aqua-themed clone of Dr. Mario called Vitamins, part of the freepuzzlearena package.

    --
    Will I retire or break 10K?
  38. Here, have some more of my karma by drinkypoo · · Score: 2

    I had a story moderated to +5 and I'm feeling generous. Vent your rage upon me, O Brother, and I shall succor you. Hell, you can even have the +1 Bonus.

    --
    "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"