[MD1] Raven 1.5
TweetFollow Us on Twitter

[MD1] Raven 1.5

From: jesjones@halcyon.com (Jesse Jones)
Subject: [ANN] Raven 1.5

I'm happy to announce that Raven 1.5 is available. You can find it at
(http://www.halcyon.com/www3/jesjones/Raven/Raven.html).

Raven is a free C++ application framework similar to PowerPlant and MacApp.
The changes in 1.5 are as follows:

Known Bugs:

* Stack crawl doesn't have symbol names if virtual memory is on.

* DTS has confirmed a bug in the 1.0.1 Appearance Extension: if a window's
procID is kWindowModalDialogProc or kWindowAlertProc the window is not
actually modal (ie the user can switch out of the app).

* When using native floating windows the NavServices dialogs don't activate
until they're clicked (OS 8.5f2). Note that this is reproducible with the
Nav Services sample code.
+ CustomGetFile seems to hang if InitFloatingWindows is called (OS 8.5f2).

+ The SIOUX window won't drag if a floater is visible (this is a SIOUX bug).

General Notes:

+ There's now a Raven web page at:
(http://www.halcyon.com/www3/jesjones/Raven/Raven.html).
There's also a mailing list. To join send email to
(listserver@justmagic.ml.org) with "Subscribe Raven" in the body of the
message.

+ Examples no longer ship with implicit warning conversion enabled (because
this
requires lots of changes to MSL).

+ The example projects were built using the 3.2 Universal Headers. If
you're not
using these headers you'll need to remove WindowsLib and ControlsLib in order
to build any of the examples.

* For the next version of Raven I hope to use a cross platform portability
layer.
This will likely be packaged as a stand alone class library. It will contain
most of the features found in Raven's Foundation and Core layers. To prepare
the way I've made the following changes:

* Raven's naming conventions have been simplified: classes consisting of only
static methods use the standard T prefix instead of U. Mixin classes start
with T instead of M and end in Mixin. The new library will use X for cross
platform classes, M for Mac classes, and W for Win32 classes. * Removed
HAS_ANSI_EXCEPTIONS and the typedefs mapping standard exception
classes to Raven style names.

* Dropped TLongPoint, TLongSize, and TLongRect. Changed TPoint, TSize, and
TRect so that they use int32. (Note that this will work better in Carbon
as well as Win32). The only problem with doing this is interfacing to the
toolbox. I originaly retained the conversion operators using 8-item static
buffers, but this could lead to nasty bugs if the item was still in use when
the buffer wrapped around. So, by default, the conversion operators are
disabled
(you can define IMPLICIT_GEOM_CONV to enable them). If you need to interface to
the toolbox you need to use either GetOSPoint or GetOSRect.

* Disabled streaming of TPoint, TSize, and TRect. This was done because it's
not always possible to determine if a saved object is 16 or 32 bits. To
stream these objects you can make use of temporary objects defined in
ZStreaming.h. They're used like this: stream )) TSize16(mSize) and stream
(( TPoint32(mDelta).
This involves a lot of renaming so I've created a drag and drop app called
BatchRenamer to handle the tedious bits. Note that TLongPoint, TLongSize,
and
TLongRect are not renamed since you'll want to handle these differently if
they're streamed.

+ modeDoesActivateOnFGSwitch Size flag should be enabled (TApplication ctor
will
ASSERT if it's not).

+ All example projects/targets weak link to InterfaceLib. You'll have to do
this as
well if you want to run on Systems prior to 8.5.

Bug Fixes and Design Changes:

+ Made significant changes to TDropApp:

- TDropApp now handles iterating over files in folders.

- The error reporting has been significantly improved. For example, the user
will now be told which file the app was working on if an exception occurs.

- mErrorExit, mCancelExit, and mNumProcessedFiles members have been added to
enable better messages when the app exits.

+ TApplication::HandleInit calls AddDialogFilter (instead of the ctor).
This avoids an ASSERT in TApplication::Invariant if a dialog was posed
while the app was initializing.

+ Fixed the TRACEFLOW in TCommanderMixin::HandleMenuCommand (it was printing a
std::string without using c_str).

+ Tweaked TFloatingDesktop::SelectWindow so that it works if there are pending
activate events.

+ TDesktop::AutoPosition correctly handles cases where modal dialog is
offset from
another modal.

+ ZBuildWindowRegions builds the window regions if the window is invisible
OR the
structure region is empty (used to be AND which could fail if the app was
hidden).

+ TRowSelection::HandleNewTableSize zaps the current selection.

+ Tweaked TPopupMenu so that it no longer ASSERTs when reanimated with
empty menu.

+ TPopupMenu mutators invalidate instead of letting the Control Manager
redraw the
control (note that the old code wasn't setting up the port so the Control
Manager
wound up drawing the menu in weird places).

+ Updated TPopupTable SWindowAttr initialization (wasn't working properly
with OS 8.5).

+ ZThumbTracker::OnTrackStop lets the Control Manager redraw the scrollbar
(so scrollbars
will un-hilite after you drag the thumb in the Gizmo or Hi-Tech themes).

+ TStandardFile::GetFile was using the wrong item number with non-empty
prompts.

+ TInStream::Resurrect no longer keeps a partially initialized object in
the object
cache if an exception is thrown.

+ Added some missing ByteSwap calls to TInStream.

+ Fixed a (really) bad cast in TFileSpec::GetPath and TFolderSpec::GetPath.

+ ZInput.cpp and ZDialogUtils.cpp use BUILD_ROUTINE_DESCRIPTOR only if
GENERATINGCFM
is true (this caused crashes on 68K machines running System 7).

+ ZInput.cpp no longer disposes of UPPs created on the stack (via
BUILD_ROUTINE_DESCRIPTOR).

+ DoubleToStr, DoubleToSciStr, and DoubleToFormStr support zero decimal digits.

+ Fixed a bug in ExtractChar ()) was used instead of &).

+ The cast functions in ZNumbers.h account for float -) int truncation.

+ Made Call_num2decl TARGET_CPU_PPC only (in ZFloatConversions.cpp).

Changes:

+ Made lot's of changes for OS 8.5. Note that this code is all wrapped in
#if's so
you don't need the 8.5 Universal Headers. If you are using the new headers
you'll
need to weak link to ControlsLib and WindowsLib. The changes include:

- ZFloatingWindow.cpp will use native floating windows if they're installed. If
you set NATIVE_FLOATING_WINDOWS to 0 the old floating window code will be used.

- Floating windows are now hidden when modal dialogs appear. (I would
prefer the
old way where floaters are merely disabled but I experienced lot's of problems
with window activation when I tried this).

- Before using Dialog Manager dialogs and alerts you need to create a
TDeativateDesktop
object.

- TWindow uses IsWindowInStandardState to compute the zoomed out window bounds.

- Added TWindow::AnimatedShow and AnimatedHide. These let you show and hide
windows with a theme specific animation.

- Moved TBuildWindowRegions into ZWindow.cpp. Added (disabled) code to replace
stuff that used TBuildWindowRegions (it's disabled because GetWindowRegion
doesn't seem to be working quite right in OS 8.5f2).

- TWindow uses SetWindowContentColor (so Window Manager erases window to
correct
color instead of white).

- Added TWindow::GetContentColor and SetContentColor.

- Added support for window proxies to TDocWindow.

- TDesktop::AutoPosition uses new RepositionWindow call.

- Added TScrollBar::SetViewSize (for proportional scrollbars). (Note that with
OS 8.5f2 proportional scroll bars are only enabled if you select the smart
scrolling option). TScroller calls this as needed.

- TScrollBar uses the new live scrollbar proc type if the Appearance Manager is
installed (which means the icky code in ZThumbTracker isn't used).

- TScrollBar and TMacControl use the 32-bit Control Manager functions.

- ZCursor.cpp uses theme cursors for non-animated cursors wherever possible.
(Appearance.h includes a function called SetAnimatedThemeCursor for animated
cursors but it can't be called at interrupt time).

- Added commented out call to
BeginThemeDragSound(kThemeDragSoundDragging) in
TDragSourceMixin::OnDragStart. (It's commented out because I'm reluctant to
include it if users can't disable it and it's not at all clear that the Sound
panel in the Appearance control panel handles this case (and I can't test this
because 8.5f2 only includes the platinum theme which apparently doesn't
include a kThemeDragSoundDragging sound)).

- TFileSystem::GetVolumeTotalBytes and GetVolumeFreeBytes use PBXGetVolInfoSync
(works better with HFS+).

- TFileSystem uses new IsAliasFile and ResolveAliasFileWithMountFlags functions
if they're available.

+ TDocApplication::HandleOpen checks to see if the document is already
open. If it
is the document's window is brought to the front.

+ Rewrote TDocApplication::DoAEOpenDocs and TDropApp::DoAEOpenDocs using
the new Apple
Event classes.

+ TApplication::HandleQuit closes floaters after regular windows (so
floaters aren't
hidden if user cancels out of save dialog).

+ Changed TAppBootStrap::OnPositionSioux to make the SIOUX window a bit
smaller (for
AM's larger window frames).

+ TEventDispatcher ensures that 0.1 seconds have passed before calling
HiliteMenu(0).
* Changed TDocument:

- OnSave will throw if the file is checked in (using 'CKID' resource).

- OnSave copies the old file's resource fork.

- OnMenuCommand treats save as save as if the file isn't writable.

- TDocument broadcasts kDocumentDirtyChanged and kChangedDocumentFileSpec.
Made mCreator, mFileType, and mFileSpec private. Added accessors for these.

+ Renamed SWindowAttr::eraseOnUpdate eraseContent and added option to use
WindowAttr::color instead of theme brush.

+ TWindow::IsContextClick no longer calls IsShowContextualMenuClick (for
some obscure
reason IsShowContextualMenuClick occasionally returns false under MacOS 8.1).

+ Changed tables:

- Weakened the THierarchicalTable::HandleSelect post condition (TSubNode's
select
their contents so they don't become selected if they're empty).

- Added TColumnSelection.

- TTableSelection::OnTripleClick takes a cell instead of a row.

+ Worked on 2D graphing code:

- T2DGraph erases using a TEraseExtension (this makes it possible to use draw
extensions to draw "underneath" the graph).

- Added T2DGridExtension. This draws lines along the major ticks.

- Added THistogramPlot.

- Added T2DAxis::OnGetLabel.

- Tweaked TContinuousPlot::Plot so that it will draw a line when y is at x
axis.

- T2DAxis converts from floats to pixels by rounding.

- T2DGraph::AdjustGraphSize recomputes bottomSize after changing bottom
axis width
(fixes an ASSERT).

- Sped up T2DAxis::UpdateLabelWidth.

+ Added HandleDeleteCol and HandleInsertCol to TBaseTableView.

+ The HandleNewTableSize methods check the invariant on exit instead of on
entry and exit.

+ TBaseTableNode descends from TSafePtrTargetMixin.

+ TPopupMenu no longer uses NewControl to create the menu (per Tech QA TB42).

+ TMacControl::OnDraw uses DrawControlInCurrentPort if Appearance 1.1 or
later (didn't
seem to work properly in 1.0).

+ TFocusRectExtension only draws dimmed rings if the owner is a latent
comamnder.

+ TTracker will optionally call BeginThemeDragSound.

+ Added TMenu::IsSeperator.

+ Made some changes to TFileSystem:

- Replaced ResolveAlias(FSSpec) with ResolveSpec. This has a slightly different
API (hence the name change) and is based on the code in TN FL 30 "Resolving
Alias Files Quietly". (This is only used prior to OS 8.5).

- Added HasDataFork and HasRsrcFork.

- Added IsWritable. In addition to seeing if the file can be opened with write
permission this will check to see if the volume is locked, if the file doesn't
yet exist, and the 'ckid' resource.

- Added TFileSystem::LaunchApp overload that takes a TFileSpec pointing to
the app
to launch.

- Rewrote TFileSystem::ForceFinderUpdate and LaunchApp (TFileSpec, bool,
bool) using
the new Apple Event classes.

+ Added TFolderSpec::GetFolder (lets you specify the FindFolder constant).

+ Made some changes to TNavigationServices:

- Added overloaded versions of ChooseObject, ChooseFile, and ChooseFolder that
allow filter objects to be specified.

- Fixed a couple of places that would throw if userCanceledErr was returned.

+ Added TKeyEvent::SetChar.

+ Added SPen::operator==.

+ Made some changes to preference handling (based on TN 1134):

- TPreferences::Init again takes a creator type.

- TDocApplication::HandleOpen calls a new method named OnOpenPref for
'pref' files.
To be compliant with TN 1134 apps should override this and display their prefs
dialog.

+ Made MPurgeable::IsPurgeable virtual. Added a comment to SetPurgeLevel
recommending
that kNormalPurgeLevel be used for most objects.

+ Ask, AnswerYes, and AnswerNo filters no longer let DefaultFilter handle
keystrokes.

+ Changed Ask and AnswerYes non-AM alerts so that default button is at
bottom right.

+ Tweaked TRecordSound:

- Added work around for 5400 siLevelMeterOnOff bug.

- Switches to mic input source when running System 8.1

+ Changed profiling code:

- Added a warning to ZProfiler.h because the MetroWerk's profiler
apparently uses
shorts internally so that it's easy to cause it to overflow as numFunctions
grows
large. This causes all manner of strange results...

- ZProfiler.cpp defines it's own ASSERT macro (since profiling is often done in
release builds).
- TProfileEnabler can now optionally disable profiling

+ Improved ZParser.h comments. Renamed TParseAggregate::CanParse OnCanParse.
Added TParseOperand (simplifies parsing constructs like "token (operand
token)*").

+ Added TLexer::SkipToken.

+ TLexer optionally ignores case (when matching).

+ Added swap methods to TSimpleVector, THandle, TPointer, TTree,
TSparseArray, and TArray.

+ Added Compare template argument to TSet.

+ TMemoryHeap::Deallocate will now ASSERT if delete [] is used on
non-arrays (and
vice versa).

+ Renamed TAllocator::ValidateHeap WalkHeap.

+ Tweaked TSimpleAllocator so that WalkHeap walks huge blocks.

+ Added a test to TAllocator unit test to time allocations in a severely
fragmented
heap (in both debug and release TBestFitAllocator is 10-30x faster than
TSimpleAllocator).

+ Added ZPointerRef::Invariant.

+ Renamed the int conversion functions (eg ShortToStr is now Int16ToStr)
and added
8-bit functions.

+ ZGetMicroSeconds ASSERTs if time starts going backwards.

+ ZComplex.inc no longer includes xdouble.h

+ Added TGestalt::GetAppearanceVersion.

+ PowerPC byte swapping uses intrinsics instead of asm functions.

+ Searched for cast expressions and changed many of them to use the new
style casts.

+ Removed HAS_BOOL.

+ Enabled STL specializations in ZTypes.h (for Pro 4).

+ RavenHeader.h defines MSIPL_DEBUG_MODE.

+ Uses MoreFiles 1.4.9

+ Added Win32 QTML changes from Loic:

- QD3D Windows draw context

- QD3D Windows file storage object

- Misc minor changes

Additions:

+ Added a BatchRenamer example project.

+ Added TAEDesc, TAEList, TAERecord, TAppleEvent, and TAEToken classes (in
Core:Apple Events).

+ Added TMouseEnterMixin (lets panes get notified when mouse enters and
leaves the pane).

+ Created ZMath.h and inc. Includes vector and statistics template
functions (most of
the vector functions were moved from TVector).

+ Added Replace (string, string, string) to ZStringUtils.h

+ Added uint32 overload of Random.

+ Added Win implementations of BreakToDebugger and BreakStrToDebugger

Quill:

+ The window editor now allows you to specify that the window doesn't have
a zoom box.

+ Can specify whether windows will be erased with theme brush or content color.

+ Modal windows can now be resizable (note that they'll have size boxes
only for
Appearance Mgr 1.0.1 and above).

+ Pane edit dialog is now resizable.

+ Uses new AnimatedShow and Hide calls.

+ Popup menu id can now be set to zero if you want to start with an empty
menu (ie
you want to add all the items at runtime).

+ Quill pops up an alert if the file isn't writable and not locked (if it's
locked
the OS will pop up an alert when the file is opened).

-- Jesse

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best Mobile Game Discounts...
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.