WO1996003691A1 - Object-oriented operating system enhancement for filtering items in a window - Google Patents

Object-oriented operating system enhancement for filtering items in a window Download PDF

Info

Publication number
WO1996003691A1
WO1996003691A1 PCT/US1995/009320 US9509320W WO9603691A1 WO 1996003691 A1 WO1996003691 A1 WO 1996003691A1 US 9509320 W US9509320 W US 9509320W WO 9603691 A1 WO9603691 A1 WO 9603691A1
Authority
WO
WIPO (PCT)
Prior art keywords
filter
items
framework
window
operating system
Prior art date
Application number
PCT/US1995/009320
Other languages
French (fr)
Inventor
Bradley A. Edelman
Original Assignee
Taligent, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Taligent, Inc. filed Critical Taligent, Inc.
Priority to DE69503052T priority Critical patent/DE69503052T2/en
Priority to EP95928675A priority patent/EP0772824B1/en
Publication of WO1996003691A1 publication Critical patent/WO1996003691A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/451Execution arrangements for user interfaces

Definitions

  • This invention generally relates to improvements in computer systems with an object-oriented operating system and, more particularly, to an enhancement to filter items displayed in a window.
  • Modern computer systems utilize an operating system with windowing capability to display items of interest to a user.
  • Examples of such systems include Microsoft Windows, X- Windows for Unix operating system platforms, and the OS/2 operating system from IBM.
  • OS/2 operating system has even added capability for incorporating limited object-oriented processing into the IBM operating system utilizing a front-end called the System Object Model (SOM).
  • SOM System Object Model
  • Windows are useful for organizing information on a display and allow a user to collect information associated with a particular feature in a central repository.
  • users have become more proficient with window processing, they have demanded an additional capability not currently available in any of the aforementioned windowing environments to better utilize an individual window and utilize the information therein.
  • the improvement for window environments is a flexible, object-oriented filtering capability to be applied to a window to select only certain items to be individually displayed and all additional items to be grouped collectively. For example, if a window contained five-hundred items ranging from document folders to help information to alias information, and the user only was interested in viewing the alias items, an alias filter is selected and applied to the window items. The window items would be updated with a new item count reflecting the number of visible alias items and the window would be updated to display only the alias items.
  • the filtering system is provided with a flexible interface by using object-oriented programming techniques and providing filtering objects organized in a filtering framework containing the filter objects.
  • New filter objects can inherit function from existing filter objects and customized for a particular requirement.
  • FIG. 1 is a block schematic diagram of a computer system, for example, a personal computer system on which the inventive object-oriented filtering framework operates;
  • FIG. 2 is a flowchart of the filter processing in accordance with a preferred embodiment
  • FIG. 3 is a system flow diagram of the filter processing in accordance with a preferred embodiment
  • FIG. 4 is a block diagram of the major modules as they are loaded in the memory of a computer in accordance with a preferred embodiment
  • Figure 5 illustrates a display showing filters in action in accordance with a preferred embodiment
  • Figure 6 illustrates a display showing a filter menu torn off from the main menu in accordance with a preferred embodiment
  • Figure 7 illustrates a display showing a window after the show aliases filter has been invoked in accordance with a preferred embodiment
  • Figure 8 illustrates a display showing a window after the show stationery has been invoked in accordance with a preferred embodiment.
  • FIG. 1 illustrates a typical hardware configuration of a computer 100 in accordance with the subject invention.
  • the computer 100 is controlled by a central processing unit 102, which may be a conventional microprocessor; a number of other units, all interconnected via a system bus 108, are provided to accomplish specific tasks.
  • a particular computer may only have some of the units illustrated in Figure 1 or may have additional components not shown, most computers will include at least the units shown.
  • computer 100 shown in Figure 1 includes a random access memory (RAM) 106 for temporary storage of information, a read only memory (ROM) 104 for permanent storage of the computer's configuration and basic operating commands and an input/output (I/O) adapter 110 for connecting peripheral devices such as a disk unit 113 and printer 114 to the bus 108, via cables 115 and 112, respectively.
  • a user interface adapter 116 is also provided for connecting input devices, such as a keyboard 120, and other known interface devices including mice, speakers and microphones to the bus 108.
  • Visual output is provided by a display adapter 118 which connects the bus 108 to a display device 122 such as a video monitor.
  • the workstation has resident thereon and is controlled and coordinated by operating system software such as the Apple System/7 ⁇ operating system.
  • the invention is implemented in the C++ programming language using object-oriented programming techniques.
  • C++ is a compiled language, that is, programs are written in a human-readable script and this script is then provided to another program called a compiler which generates a machine-readable numeric code that can be loaded into, and directly executed by, a computer.
  • a compiler which generates a machine-readable numeric code that can be loaded into, and directly executed by, a computer.
  • 3 - the C-r- language has certain characteristics which allow a software developer to easily use programs written by others while still providing a great deal of control over the reuse of programs to prevent their destruction or improper use.
  • the C++ language is well-known and many articles and texts are available which describe the language in detail.
  • C++ compilers are commercially available from several vendors including Borland International, Inc. and Microsoft Corporation. Accordingly, for reasons of clarity, the details of the C++ language and the operation of the C++ compiler will not be discussed further in detail herein.
  • OOP Object- Oriented Programming
  • objects are software entities comprising data elements and routines, or functions, which manipulate the data elements.
  • the data and related functions are treated by the software as an entity and can be created, used and deleted as if they were a single item.
  • the data and functions enable objects to model virtually any real-world entity in terms of its characteristics, which can be represented by the data elements, and its behavior, which can be represented by its data manipulation functions.
  • objects can model concrete things like people and computers, and they can also model abstract concepts like numbers or geometrical designs.
  • Objects are defined by creating "classes" which are not objects themselves, but which act as templates that instruct the compiler how to construct the actual object.
  • a class may, for example, specify the number and type of data variables and the steps involved in the functions which manipulate the data.
  • An object is actually created in the program by means of a special function called a constructor which uses the corresponding class definition and additional information, such as arguments provided during object creation, to construct the object. Likewise objects are destroyed by a special function called a destructor. Objects may be used by using their data and invoking their functions.
  • objects can be designed to hide, or encapsulate, all, or a portion of, the internal data structure and the internal functions. More particularly, during program design, a program developer can define objects in which all or some of the data variables and all or some of the related functions are considered "private" or for use only by the object itself. Other data or functions can be declared "public” or available for use by other programs. Access to the private variables by other programs can be controlled by defining public functions for an object which access the object's private data. The public functions form a controlled and consistent interface between the private data and the "outside" world. Any attempt to write program code which directly accesses the private variables causes the compiler to generate an error during program compilation which error stops the compilation process and prevents the program from being run.
  • Polymorphism is a concept which allows objects and functions which have the same overall format, but which work with different data, to function differently in order to produce consistent results.
  • an addition function may be defined as variable A plus variable B (A+B) and this same format can be used whether the A and B are numbers, characters or dollars and cents.
  • the actual program code which performs the addition may differ widely depending on the type of variables that comprise A and B.
  • Polymorphism allows three separate function definitions to be written, one for each type of variable (numbers, characters and dollars). After the functions have been defined, a program can later refer to the addition function by its common format (A+B) and, during compilation, the C++ compiler will determine which of the three functions is actually being used by examining the variable types. The compiler will then substitute the proper function code. - /
  • Polymorphism allows similar functions which produce analogous results to be "grouped" in the program source code to produce a more logical and clear program flow.
  • the third principle which underlies object-oriented programming is inheritance, which allows program developers to easily reuse pre-existing programs and to avoid creating software from scratch.
  • the principle of inheritance allows a software developer to declare classes (and the objects which are later created from them) as related.
  • classes may be designated as subclasses of other base classes.
  • a subclass "inherits" and has access to all of the public functions of its base classes just as if these function appeared in the subclass.
  • a subclass can override some or all of its inherited functions or may modify some or all of its inherited functions merely by defining a new function with the same form (overriding or modification does not alter the function in the base class, but merely modifies the use of the function in the subclass).
  • the creation of a new subclass which has some of the functionality (with selective modification) of another class allows software developers to easily customize existing code to meet their particular needs.
  • an application framework for a user interface might provide a set of pre-defined graphic interface objects which create windows, scroll bars, menus, etc. and provide the support and "default" behavior for these graphic interface objects.
  • application frameworks are based on object- oriented techniques, the pre-defined classes can be used as base classes and the built-in default behavior can be inherited by developer-defined subclasses and either modified or overridden to allow developers to extend the framework and create customized solutions in a particular area of expertise.
  • This object-oriented approach provides a major advantage over traditional programming since the programmer is not changing the original program, but rather extending the capabilities of the original program.
  • developers are not blindly working through layers of code because the framework provides architectural guidance and modeling and, at the same time, frees the developers to supply specific actions unique to the problem domain.
  • frameworks There are many kinds of application frameworks available, depending on the level of the system involved and the kind of problem to be solved.
  • the types of frameworks range from high-level application frameworks that assist in developing a user interface, to lower-level frameworks that provide basic system software services such as communications, printing, file systems support, graphics, etc.
  • Commercial examples of application frameworks include MacApp (Apple), Bedrock (Symantec), OWL (Borland), NeXT Step App Kit (NeXT), and Smalltalk-80 MVC (ParcPlace).
  • a system framework such as that included in a preferred embodiment, can provide a prefab functionality for system level services which developers can modify or override to create customized solutions, thereby avoiding the awkward procedural calls necessary with the prior art application frameworks programs.
  • a system framework is used for the filtering and sorting system of the present invention.
  • the filter objects and the sort objects provide their own internal data plus a set of predefined methods for filtering and sorting the items in a particular window into other representations.
  • an application software developer who needs filtering and sorting capabilities only needs to supply the characteristics and behavior of the filters, while the framework provides the actual routines which set up the filters, sort the items and reformat the window to display the correct information on the display.
  • the system can also provide information through alternate means other than a visual display. A user could access an electronic mail system using a telephone and use the filtering mechanism described here to limit which messages would be read to the user over the phone.
  • a preferred embodiment takes the concept of frameworks and applies it throughout the entire system, including the application and the operating system.
  • frameworks such as MacApp
  • FIG. 2 is a flowchart of the filtering logic in accordance with a preferred embodiment of the invention.
  • Processing commences at function block 200 where the object-oriented operating system utilizes the view framework to display a window.
  • the view framework is used to manage display real- estate.
  • a view specifies an area of the display and facilitates using the graphics framework to draw images on that part of the display.
  • the view framework provides clipping and depth ordering when views are overlapping.
  • the system detects the selection of a particular filter from a menu of filtering capabilities and applies the filter to the items in the displayed window as shown in function block 220.
  • the application of the filter includes two visible indicia on the display.
  • the item count on the display is updated based on the number of items that do not meet the filter property which results in their loss of individual identity on the display and subtraction from the active item count as shown in function block 240.
  • the window items are updated to display individually only those items that meet the filter requirements. All others are depicted by an icon showing numerous items tied together as a group utilizing a belt. Processing stops at terminal 250.
  • FIG. 3 illustrates how filters are used in accordance with a preferred embodiment of the invention.
  • information propagates forward using notification 310, 330 and 350 and questions can be asked backward using direct function calls 390, 380 and 370.
  • Filters 325 are held by the filtering framework 320 which provides an important level of indirection. Given this indirection, the filter can be replaced without need for the next node in the information cascade (in this case, the sorter framework 340) to reestablish its connection. Had the filter 325 been in the cascade directly, removal of the filter framework 320 would have broken the cascade.
  • Container Layout View (CLV) 360 is the view information defining the window containing the items as depicted in Figure 5.
  • the Containable Component Sources (CCS) objects 370, 380 and 390, provide an important architectural freedom. It does not matter what protocol or base classes an object in the cascade has. It only matters that it a CCS can be implemented for it. This is particularly important in the case where the backing object is the model because it properly obeys the architectural need for a data/presentation split.
  • the data being presented i.e. a set of files
  • the presentation system described here demands that every sour of information in the cascade (including the source which is the folder model) must communicate through a CCS interface.
  • the folder model can be used with other presentation systems, it would be architecturally incorrect to demand it inherit protocol for use by the presentation. Instead, a CCS that understands how to communicate with the model is implemented which converts the model's protocol into a protocol understood by the presentation system described here.
  • Figure 4 is a schematic block diagram which illustrates the interaction of a container layout view 432 with three frameworks: the container framework 408, the filter framework 410 and the sorter framework 412, which interaction is indicated schematically by arrows 426, 428 and 430, respectively.
  • Each of the three frameworks communicates with the object-oriented operating system 400 in a preferred embodiment.
  • the container framework 408 contains the Containable Component Reference 414 which is a reference for a Containable Component 416 residing in a small amount of memory.
  • the Containable 415 is an object residing in the object oriented operating system containing information indicative of name, icon and children for each of the icons listed in the Container Layout View 431.
  • the Container Layout View 431 maintains a set of containable component references indicative of what items are represented by the other items icon and currently inactive on the display depicted in Figure 7.
  • the Containable Component is an object which contains information indicative of a containable and information utilized in displaying the containable 415.
  • the Filter Framework 410 is a collection of objects resident in the object-oriented operating system for enabling filtering.
  • the Containable Container Source 418 provides the information relative to the containable that the filter is processing.
  • the Container Filter 420 is the object that examines a containable and determines whether it should be displayed based on the filtering information.
  • the Container Filter ID 417 is an extensibility mechanism for adding a new id and label for a filter that can thereafter accessed and activated.
  • the Sorter Framework 412 is a collection of objects resident in the object-oriented operating system for enabling Sorting.
  • the Containable Container Source 422 provides the information relative to the containable that the Sorter is processing.
  • the Container Sorter 424 is the object that examines the set of containables and determines what order they should be displayed in.
  • the Container Sorter ID 421 is an extensibility mechanism for adding a new id and label for a Sorter that can thereafter accessed and activated.
  • N Y minus X.
  • Figure 5 illustrates a display from a user perspective showing a window before filtering has been performed in accordance with a preferred embodiment.
  • the document folders are in the default state which displays all items available for use by a user. Note the status bar indicates: "6 of 6 items shown" and that 6 items appear in the folder.
  • the six items currently active in the window are Folders which has a property of stationery, READ ME which has a property of document, Taligent.Help which has a property of document, READ.ME-alias which has a property of alias, WELCOME-alias which has a property of alias, and Phone- alias which has a property of alias.
  • the window is displayed using objects provided by the toolbox which use the view framework to provide the display real-estate for the window and the graphics system to draw the window frame and decoration.
  • the controls framework is used to add controls like the close-box and window-maximizer to the window's title bar.
  • Each item displayed is backed by a "containable" which is an object which provides information about attributes such as name, type, icon, and visually represented by a view object used to draw the icon and name.
  • a menu can be dragged away from its menu- palette.
  • the mouse button it released , the menu becomes its own menu palette.
  • a filter When a filter is selected by clicking on the menu, it causes a menu state object to update the menu checkmark and notify the filtering framework that a new filter has been selected. The filtering framework then creates a new filter of the selected type and installs it in the filter holder.
  • the "other items" bundle is backed by a data structure which holds the set of which items are filtered.
  • a filter object of the type selected is created within the Filter Framework.
  • the Filter Framework sends a message to the Sorter Framework to indicate that a new filter has been installed and consequently the filtered status of the presented items may have changed.
  • the sorter then may ask the filter questions to determine if any state has changed and take appropriate action.
  • the Sorter Framework Once the Sorter Framework has synchronized to the change caused by the filter installation, it sends a message forward to the view that some information may have changed. The view then takes similar action and synchronizes to information provided by the sorter.
  • containable components are referred to by containable component references (TContainableComponentReference). References allow the framework to keep information about containable components without keeping copies of the containable components themselves. Further, the filter framework has an object called a TContainableComponentlnfo which holds two pieces of information: 1 ) a TContainableComponentReference, and 2) a boolean value indicating whether or not this containable component is marked filtered.
  • // constructor - caller provides a TContainableComponentReference TContainableComponentInfo(const TContainableComponentReference& ) ;
  • TContamableComponentInfo& opera tor (const TContainableComponentInfo&);
  • MContainableComponentSource When a filter is invoked, a parameter, MContainableComponentSource, is passed to the filter. This parameter is used to indicate various characteristics concerning the information being filtered. First, what order should be used to filter the items? Second, what item comes before this one? The "C++" source code for the MContainableComponentSource Application Program Interface (API) is presented below.
  • a filter is an object with the ability to look at a collection of containable components and determine, on the basis of a deterministic algorithm, which containable components should be marked "filtered" and which ones should not be.
  • a deterministic algorithm is one that gives the same result every time. Given a set of 10 numbers, an algorithm that determines the largest number is deterministic, but algorithm that picks one of the 10 at random is non-deterministic.
  • TContainerFilter (MContainableComponentSource* toAlias); // destructor virtual ⁇ TContainerFilter();
  • TContainerFilter has five "interesting" member functions - the pure virtual logic that developers override to customize filter functionality. The behavior of these functions is specified below:
  • SyncUp When SyncUp is called, this is an indication that the source information has changed significantly and the entire internal state of the filter should be updated.
  • Some filters have no internal state. More complex filters must keep track of previously encountered information in order to execute efficiently. Some filters can decide whether a containble component is filtered on a case by case basis, for example a filter that passes containble component whose name starts with the letter "A". Other filters need to consider multiple containble component at once in order to make a decision, for example a filter that only passes containble components whose names are pair of a .C/.h pair, (if a containble component named foo.C existed, it would only pass through the filtered of a containble component named foo.h also existed). Sophisticated filters like this can be implemented more efficiently if they maintain internal state which caches information about all the containble. components being presented. Sync Up gives the filter a chance to rebuild this cache when a large change occurs.
  • TContainableComponenrinfo's in the same order that it would receive them if it called GiveReferences on the source. This is important to allow filters to be used on a sorted list of containble components.
  • Add is passed two collections: add is a collection of those containable components that have been added to the source and should be considered by the filter - update the filter's internal state (if any) and decide whether or not each containable component should be filtered out.
  • ChangedResult is used by more sophisticated filters that may change their mind about previously seen containable components when a new one is added. For example, a filter that only allows documents to pass if they are part of a .C or a .h pair may have previously filtered foo.h because foo.C was not in the source. When foo.C is added, it needs to unfilter foo.h - therefore an unfiltered foo.h would be added to the changedResult.
  • Remove is very similar to Add except that instead of considering containable components that have been added to the source, it considers ones that have been removed.
  • Change is very similar to Add except that instead of considering containable components that have been added to the source, it considers ones that have changed in some way. Essentially, this allows for some optimization.
  • the net result of a change should be the same as removing and re-adding the item.
  • One possible implementation of Change is to call Remove and then Add! Changes in containble components are important to filtering because the change may change the result of the filter. For example if the filter only passes containble components whose name starts with "A" and a containble component changes its name from "Apple” to "Pear”, then the filter which previously passed this containble component needs to reverse its decision and mark the containble component as filtered. Filter IDs
  • TContainerFilterlD subclass which serves as a light-weight representation of the filter.
  • TContainerFilterlD's have 3 primary functions which include:
  • filters can readily be cascaded without departing from the invention.
  • filters can readily be cascaded without departing from the invention.
  • they can be joined in series to apply a variety of filters to a view before the view is redisplayed.

Abstract

A filtering framework in an object-oriented operating system with a processor, such as an IBM ® Power PC, a storage connected to and controlled by the processor, a display connected to and controlled by said processor, an object-oriented operating system resident in the storage and under the control of the processor, a view framework in the object-oriented operating system for managing a window on the display, a container framework in the object-oriented operating system for storing and manipulating information indicative of each item displayed in the window on the display, and a filter framework in the object-oriented operating system containing a method and data which respond to selection of a particular filter object and application of the filter object to each item displayed in the window to filter out all items not matching a particular characteristic that is not currently required. The filtered out items in a preferred embodiment are gathered into a bundle of unusable items and displayed in a group. Whereas, the items meeting the particular characteristic are displayed normally on the display along with a count of the items that are currently active on the display.

Description

OBJECT-ORIENTED OPERATING SYSTEM ENHANCEMENT FOR FILTERING ITEMS IN A WINDOW
COPYRIGHT NOTIFICATION Portions of this patent application contain materials that are subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office, but otherwise reserves all copyright rights whatsoever.
Field of the Invention
This invention generally relates to improvements in computer systems with an object-oriented operating system and, more particularly, to an enhancement to filter items displayed in a window.
Background of the Invention
Modern computer systems utilize an operating system with windowing capability to display items of interest to a user. Examples of such systems include Microsoft Windows, X- Windows for Unix operating system platforms, and the OS/2 operating system from IBM. Recently, the OS/2 operating system has even added capability for incorporating limited object-oriented processing into the IBM operating system utilizing a front-end called the System Object Model (SOM). Windows are useful for organizing information on a display and allow a user to collect information associated with a particular feature in a central repository. However, as users have become more proficient with window processing, they have demanded an additional capability not currently available in any of the aforementioned windowing environments to better utilize an individual window and utilize the information therein.
Summary of the Invention
The improvement for window environments is a flexible, object-oriented filtering capability to be applied to a window to select only certain items to be individually displayed and all additional items to be grouped collectively. For example, if a window contained five-hundred items ranging from document folders to help information to alias information, and the user only was interested in viewing the alias items, an alias filter is selected and applied to the window items. The window items would be updated with a new item count reflecting the number of visible alias items and the window would be updated to display only the alias items.
The filtering system is provided with a flexible interface by using object-oriented programming techniques and providing filtering objects organized in a filtering framework containing the filter objects. New filter objects can inherit function from existing filter objects and customized for a particular requirement.
Brief Description of the Drawing Figure 1 is a block schematic diagram of a computer system, for example, a personal computer system on which the inventive object-oriented filtering framework operates;
Figure 2 is a flowchart of the filter processing in accordance with a preferred embodiment;
Figure 3 is a system flow diagram of the filter processing in accordance with a preferred embodiment;
Figure 4 is a block diagram of the major modules as they are loaded in the memory of a computer in accordance with a preferred embodiment;
Figure 5 illustrates a display showing filters in action in accordance with a preferred embodiment;
Figure 6 illustrates a display showing a filter menu torn off from the main menu in accordance with a preferred embodiment; Figure 7 illustrates a display showing a window after the show aliases filter has been invoked in accordance with a preferred embodiment; and
Figure 8 illustrates a display showing a window after the show stationery has been invoked in accordance with a preferred embodiment.
Detailed Description of the Illustrative Embodiment A preferred embodiment of the invention is preferably practiced in the context of an operating system resident on a personal computer such as the IBM PS/2* or Apple Macintosh computer. A representative hardware environment is depicted in Figure 1 , which illustrates a typical hardware configuration of a computer 100 in accordance with the subject invention. The computer 100 is controlled by a central processing unit 102, which may be a conventional microprocessor; a number of other units, all interconnected via a system bus 108, are provided to accomplish specific tasks. Although a particular computer may only have some of the units illustrated in Figure 1 or may have additional components not shown, most computers will include at least the units shown.
Specifically, computer 100 shown in Figure 1 includes a random access memory (RAM) 106 for temporary storage of information, a read only memory (ROM) 104 for permanent storage of the computer's configuration and basic operating commands and an input/output (I/O) adapter 110 for connecting peripheral devices such as a disk unit 113 and printer 114 to the bus 108, via cables 115 and 112, respectively. A user interface adapter 116 is also provided for connecting input devices, such as a keyboard 120, and other known interface devices including mice, speakers and microphones to the bus 108. Visual output is provided by a display adapter 118 which connects the bus 108 to a display device 122 such as a video monitor. The workstation has resident thereon and is controlled and coordinated by operating system software such as the Apple System/7 operating system.
In a preferred embodiment, the invention is implemented in the C++ programming language using object-oriented programming techniques. C++ is a compiled language, that is, programs are written in a human-readable script and this script is then provided to another program called a compiler which generates a machine-readable numeric code that can be loaded into, and directly executed by, a computer. As described below, 3 - the C-r- language has certain characteristics which allow a software developer to easily use programs written by others while still providing a great deal of control over the reuse of programs to prevent their destruction or improper use. The C++ language is well-known and many articles and texts are available which describe the language in detail. In addition, C++ compilers are commercially available from several vendors including Borland International, Inc. and Microsoft Corporation. Accordingly, for reasons of clarity, the details of the C++ language and the operation of the C++ compiler will not be discussed further in detail herein.
As will be understood by those skilled in the art, Object- Oriented Programming (OOP) techniques involve the definition, creation, use and destruction of "objects". These objects are software entities comprising data elements and routines, or functions, which manipulate the data elements. The data and related functions are treated by the software as an entity and can be created, used and deleted as if they were a single item. Together, the data and functions enable objects to model virtually any real-world entity in terms of its characteristics, which can be represented by the data elements, and its behavior, which can be represented by its data manipulation functions. In this way, objects can model concrete things like people and computers, and they can also model abstract concepts like numbers or geometrical designs.
Objects are defined by creating "classes" which are not objects themselves, but which act as templates that instruct the compiler how to construct the actual object. A class may, for example, specify the number and type of data variables and the steps involved in the functions which manipulate the data. An object is actually created in the program by means of a special function called a constructor which uses the corresponding class definition and additional information, such as arguments provided during object creation, to construct the object. Likewise objects are destroyed by a special function called a destructor. Objects may be used by using their data and invoking their functions.
The principle benefits of object-oriented programming techniques arise out of three basic principles: encapsulation, polymorphism and inheritance. More specifically, objects can be designed to hide, or encapsulate, all, or a portion of, the internal data structure and the internal functions. More particularly, during program design, a program developer can define objects in which all or some of the data variables and all or some of the related functions are considered "private" or for use only by the object itself. Other data or functions can be declared "public" or available for use by other programs. Access to the private variables by other programs can be controlled by defining public functions for an object which access the object's private data. The public functions form a controlled and consistent interface between the private data and the "outside" world. Any attempt to write program code which directly accesses the private variables causes the compiler to generate an error during program compilation which error stops the compilation process and prevents the program from being run.
Polymorphism is a concept which allows objects and functions which have the same overall format, but which work with different data, to function differently in order to produce consistent results. For example, an addition function may be defined as variable A plus variable B (A+B) and this same format can be used whether the A and B are numbers, characters or dollars and cents. However, the actual program code which performs the addition may differ widely depending on the type of variables that comprise A and B. Polymorphism allows three separate function definitions to be written, one for each type of variable (numbers, characters and dollars). After the functions have been defined, a program can later refer to the addition function by its common format (A+B) and, during compilation, the C++ compiler will determine which of the three functions is actually being used by examining the variable types. The compiler will then substitute the proper function code. - /
Polymorphism allows similar functions which produce analogous results to be "grouped" in the program source code to produce a more logical and clear program flow.
The third principle which underlies object-oriented programming is inheritance, which allows program developers to easily reuse pre-existing programs and to avoid creating software from scratch. The principle of inheritance allows a software developer to declare classes (and the objects which are later created from them) as related. Specifically, classes may be designated as subclasses of other base classes. A subclass "inherits" and has access to all of the public functions of its base classes just as if these function appeared in the subclass. Alternatively, a subclass can override some or all of its inherited functions or may modify some or all of its inherited functions merely by defining a new function with the same form (overriding or modification does not alter the function in the base class, but merely modifies the use of the function in the subclass). The creation of a new subclass which has some of the functionality (with selective modification) of another class allows software developers to easily customize existing code to meet their particular needs.
Although object-oriented programming offers significant improvements over other programming concepts, program development still requires significant outlays of time and effort, especially if no pre-existing software programs are available for modification. Consequently, a prior art approach has been to provide a program developer with a set of pre-defined, interconnected classes which create a set of objects and additional miscellaneous routines that are all directed to performing commonly-encountered tasks in a particular environment. Such pre-defined classes and libraries are typically called "application frameworks" and essentially provide a pre-fabricated structure for a working application.
For example, an application framework for a user interface might provide a set of pre-defined graphic interface objects which create windows, scroll bars, menus, etc. and provide the support and "default" behavior for these graphic interface objects. Since application frameworks are based on object- oriented techniques, the pre-defined classes can be used as base classes and the built-in default behavior can be inherited by developer-defined subclasses and either modified or overridden to allow developers to extend the framework and create customized solutions in a particular area of expertise. This object-oriented approach provides a major advantage over traditional programming since the programmer is not changing the original program, but rather extending the capabilities of the original program. In addition, developers are not blindly working through layers of code because the framework provides architectural guidance and modeling and, at the same time, frees the developers to supply specific actions unique to the problem domain.
There are many kinds of application frameworks available, depending on the level of the system involved and the kind of problem to be solved. The types of frameworks range from high-level application frameworks that assist in developing a user interface, to lower-level frameworks that provide basic system software services such as communications, printing, file systems support, graphics, etc. Commercial examples of application frameworks include MacApp (Apple), Bedrock (Symantec), OWL (Borland), NeXT Step App Kit (NeXT), and Smalltalk-80 MVC (ParcPlace).
While the application framework approach utilizes all the principles of encapsulation, polymorphism, and inheritance in the object layer, and is a substantial improvement over other programming techniques, there are difficulties which arise. These difficulties are caused by the fact that it is easy for developers to reuse their own objects, but it is difficult for the developers to use objects generated by other programs. Further, application frameworks generally consist of one or more object "layers" on top of a monolithic operating system and even with the flexibility of the object layer, it is still often necessary to directly interact with the underlying operating system by means of awkward procedural calls.
In the same way that an application framework provides the developer with prefab functionality for an application program, a system framework, such as that included in a preferred embodiment, can provide a prefab functionality for system level services which developers can modify or override to create customized solutions, thereby avoiding the awkward procedural calls necessary with the prior art application frameworks programs. In particular such a system framework is used for the filtering and sorting system of the present invention. The filter objects and the sort objects provide their own internal data plus a set of predefined methods for filtering and sorting the items in a particular window into other representations. Consequently, an application software developer who needs filtering and sorting capabilities only needs to supply the characteristics and behavior of the filters, while the framework provides the actual routines which set up the filters, sort the items and reformat the window to display the correct information on the display. The system can also provide information through alternate means other than a visual display. A user could access an electronic mail system using a telephone and use the filtering mechanism described here to limit which messages would be read to the user over the phone.
A preferred embodiment takes the concept of frameworks and applies it throughout the entire system, including the application and the operating system. For the commercial or corporate developer, systems integrator, or OEM, this means all of the advantages that have been illustrated for a framework such as MacApp can be leveraged not only at the application level for such things as text and user interfaces, but also at the system level, for services such as printing, graphics, multi- media, file systems, I/O, testing, etc.
Figure 2 is a flowchart of the filtering logic in accordance with a preferred embodiment of the invention. Processing commences at function block 200 where the object-oriented operating system utilizes the view framework to display a window. The view framework is used to manage display real- estate. A view specifies an area of the display and facilitates using the graphics framework to draw images on that part of the display. The view framework provides clipping and depth ordering when views are overlapping. Then, at function block 210, the system detects the selection of a particular filter from a menu of filtering capabilities and applies the filter to the items in the displayed window as shown in function block 220. The application of the filter includes two visible indicia on the display. First, the item count on the display is updated based on the number of items that do not meet the filter property which results in their loss of individual identity on the display and subtraction from the active item count as shown in function block 240. Finally, in function block 240, the window items are updated to display individually only those items that meet the filter requirements. All others are depicted by an icon showing numerous items tied together as a group utilizing a belt. Processing stops at terminal 250.
Figure 3 illustrates how filters are used in accordance with a preferred embodiment of the invention. In the system, information propagates forward using notification 310, 330 and 350 and questions can be asked backward using direct function calls 390, 380 and 370. Filters 325 are held by the filtering framework 320 which provides an important level of indirection. Given this indirection, the filter can be replaced without need for the next node in the information cascade (in this case, the sorter framework 340) to reestablish its connection. Had the filter 325 been in the cascade directly, removal of the filter framework 320 would have broken the cascade. For example, this indirection allows for replacing a "Show Aliases" filter with a "Show Stationery" filter without changing the relationship between any objects except the filter holder and the filter itself. Container Layout View (CLV) 360 is the view information defining the window containing the items as depicted in Figure 5. The Containable Component Sources (CCS) objects 370, 380 and 390, provide an important architectural freedom. It does not matter what protocol or base classes an object in the cascade has. It only matters that it a CCS can be implemented for it. This is particularly important in the case where the backing object is the model because it properly obeys the architectural need for a data/presentation split. Had the presentation framework placed base class or protocol requirements on the model, the data/presentation split would have been violated. In the preferred embodiment of the system, the data being presented (i.e. a set of files) is held in a "folder model" which could potentially be used by other presentation systems. However, the presentation system described here demands that every sour of information in the cascade (including the source which is the folder model) must communicate through a CCS interface. Because the folder model can be used with other presentation systems, it would be architecturally incorrect to demand it inherit protocol for use by the presentation. Instead, a CCS that understands how to communicate with the model is implemented which converts the model's protocol into a protocol understood by the presentation system described here.
Figure 4 is a schematic block diagram which illustrates the interaction of a container layout view 432 with three frameworks: the container framework 408, the filter framework 410 and the sorter framework 412, which interaction is indicated schematically by arrows 426, 428 and 430, respectively. Each of the three frameworks communicates with the object-oriented operating system 400 in a preferred embodiment. The container framework 408 contains the Containable Component Reference 414 which is a reference for a Containable Component 416 residing in a small amount of memory. The Containable 415 is an object residing in the object oriented operating system containing information indicative of name, icon and children for each of the icons listed in the Container Layout View 431. The Container Layout View 431 maintains a set of containable component references indicative of what items are represented by the other items icon and currently inactive on the display depicted in Figure 7. The Containable Component is an object which contains information indicative of a containable and information utilized in displaying the containable 415.
The Filter Framework 410 is a collection of objects resident in the object-oriented operating system for enabling filtering. The Containable Container Source 418 provides the information relative to the containable that the filter is processing. The Container Filter 420 is the object that examines a containable and determines whether it should be displayed based on the filtering information. The Container Filter ID 417 is an extensibility mechanism for adding a new id and label for a filter that can thereafter accessed and activated.
The Sorter Framework 412 is a collection of objects resident in the object-oriented operating system for enabling Sorting. The Containable Container Source 422 provides the information relative to the containable that the Sorter is processing. The Container Sorter 424 is the object that examines the set of containables and determines what order they should be displayed in. The Container Sorter ID 421 is an extensibility mechanism for adding a new id and label for a Sorter that can thereafter accessed and activated.
Visual Representation of Filtering
The examples below show various ways of visually representing filtered items; however, two visual indicators appear optimal.
1. A status bar containing information indicative of "X of Y items shown" - this indicates that Y minus X items are not shown because they are filtered.
2. "N Other Items" icon. Where N = Y minus X. An icon that looks like a "stack of documents" appears with a name that indicates how many items are not shown because they are filtered. Alternate methods for visually representing filtered items exist. One possibility would be to "gray out" items which have been filtered and make them non-selectable items on the display. Another would be to "shrink" them so that they would not appear prominently on the display. Depending on the context, different techniques may be more appropriate. The important thing is that a user is aware that items have been filtered and does not believe that the document has been lost.
Figure 5 illustrates a display from a user perspective showing a window before filtering has been performed in accordance with a preferred embodiment. The document folders are in the default state which displays all items available for use by a user. Note the status bar indicates: "6 of 6 items shown" and that 6 items appear in the folder. The six items currently active in the window are Folders which has a property of stationery, READ ME which has a property of document, Taligent.Help which has a property of document, READ.ME-alias which has a property of alias, WELCOME-alias which has a property of alias, and Phone- alias which has a property of alias. The window is displayed using objects provided by the toolbox which use the view framework to provide the display real-estate for the window and the graphics system to draw the window frame and decoration. The controls framework is used to add controls like the close-box and window-maximizer to the window's title bar. Each item displayed is backed by a "containable" which is an object which provides information about attributes such as name, type, icon, and visually represented by a view object used to draw the icon and name.
In Figure 6, a user has "torn off the Filter Menu. Note that, the filter menu indicates that "Show All" is the selected filter denoted by a check mark located next to the item. The "Show All" filter is the NIL-filter, it does nothing. The Document Folder presentation is unchanged from the previous figure. The system's controls framework provides menu functionality.
Using the mouse, a menu can be dragged away from its menu- palette. When the mouse button it released , the menu becomes its own menu palette.
In Figure 7, a user has selected the "Show Aliases" menu item. Note, that the Filter Menu reflects this change in filter denoted by a check mark next to the "Show Aliases" option. This change in filter has affected the presentation. The status bar now reads, "3 of 6 items shown." Only the items which are aliases remain. Also, a new icon has appeared which looks like a stack of documents entitled "3 other items." This "other items" along with the "3 of 6 items shown" status bar serve together to visually emphasize that some items are NOT shown. It is important to provide clear feedback to a user that a filter is in use so that they do not mistakenly think their documents have disappeared. When a filter is selected by clicking on the menu, it causes a menu state object to update the menu checkmark and notify the filtering framework that a new filter has been selected. The filtering framework then creates a new filter of the selected type and installs it in the filter holder. The "other items" bundle is backed by a data structure which holds the set of which items are filtered.
In Figure 8, the user has selected the "Show Stationery" menu item. Again, the check mark denotes which filter has been chosen. Now, the status bar indicates, "1 of 6 items shown." The Folders stationery is shown along with the "5 other items" icon. Filtering Framework Internals
When a user selects a filter from a menu, a filter object of the type selected is created within the Filter Framework. Whenever a new filter is created, the Filter Framework sends a message to the Sorter Framework to indicate that a new filter has been installed and consequently the filtered status of the presented items may have changed. The sorter then may ask the filter questions to determine if any state has changed and take appropriate action. Once the Sorter Framework has synchronized to the change caused by the filter installation, it sends a message forward to the view that some information may have changed. The view then takes similar action and synchronizes to information provided by the sorter.
Developing a Filter
Supporting Classes The items that the user sees in the window are called containable components. In the filtering framework, containable components are referred to by containable component references (TContainableComponentReference). References allow the framework to keep information about containable components without keeping copies of the containable components themselves. Further, the filter framework has an object called a TContainableComponentlnfo which holds two pieces of information: 1 ) a TContainableComponentReference, and 2) a boolean value indicating whether or not this containable component is marked filtered.
class TContainableComponentlnfo : public MCollectible { public:
MCollectibleDeclarationsMacro(TContainableComponentInf o);
// constructor - caller provides a TContainableComponentReference TContainableComponentInfo(const TContainableComponentReference& ) ;
// copy constructor
TContainableComponentlnfo(const TContainableComponentInfo&);
// destructor virtual ~TContainableComponentInfo();
// assignment operator
TContamableComponentInfo& opera tor=(const TContainableComponentInfo&);
// streaming operators virtual TStream& operator»=(TStream& towhere) const; virtual TStream& operator«=(TStream& fromwhere);
// comparison and hashing for use by collections virtual long Hash() const; virtual Boolean IsEqual(const MCollectible*) const;
// information interface for getting info about reference and filtered status virtual TContainableComponentReference
GetContainableComponentReference( ) const; virtual Boolean IsFilteredO const; virtual void SetFiltered();
protected:
TContainableComponentinfo( ) ;
1;
When a filter is invoked, a parameter, MContainableComponentSource, is passed to the filter. This parameter is used to indicate various characteristics concerning the information being filtered. First, what order should be used to filter the items? Second, what item comes before this one? The "C++" source code for the MContainableComponentSource Application Program Interface (API) is presented below.
class MContainableComponentSource { public: / get information about model where containables components are kept virtual TModelReference GetModelReferenceO const =
0; // get ordered list of containble component infos virtual void GiveReferences(TFunnelFor<TContainableComponentInfo>&) const = 0;
// get reference of containble component before this one, isFIrst is set to TRUE
// is this one is the first one virtual TContainableComponentReference
Before (const TContainableComponentReference&, Boolean& isFirst) const = 0; };
The Filter
In essence, a filter is an object with the ability to look at a collection of containable components and determine, on the basis of a deterministic algorithm, which containable components should be marked "filtered" and which ones should not be. A deterministic algorithm is one that gives the same result every time. Given a set of 10 numbers, an algorithm that determines the largest number is deterministic, but algorithm that picks one of the 10 at random is non-deterministic.
A C++ implementation of an abstract interface for a container filter is presented below in accordance with a preferred embodiment of the invention.
class TContainerFilter : public MCollectible { public: VersionDeclarationsMacro(TContainerFilter); // constructor takes a MContainableComponentSource for the filter to use
TContainerFilter(MContainableComponentSource* toAlias); // destructor virtual ~TContainerFilter();
// give information in filtered state virtual void GiveReferences(TFunnelFor<TContainableComponentInfo>&) const = 0; // synchronize with information provided by
MContainableComponentSource virtual void SyncUpO = 0;
// new containble components have arrived, process them, report changes virtual void Add(TContainableComponentinfoCollection& added,
TContainableComρonentInfoCollection& changedResult) = 0;
// containble components have been removed, process them, report changes virtual void Remove(TContainableComponentReferenceCollection& removed, TContainableComponentInfoCollection& changedResult) = 0;
// containble components have changed, process them, report further changes virtual void Change(TContainableComponentInfoCollection& changed,
TContainableComponentInfoCollection& changedResult) = 0; protected:
// subclasser interface to get MContainableComponentSource to use MContainableComponentSource* GetSourceQ const; i;
TContainerFilter has five "interesting" member functions - the pure virtual logic that developers override to customize filter functionality. The behavior of these functions is specified below:
virtual void SyncUpO = 0;
When SyncUp is called, this is an indication that the source information has changed significantly and the entire internal state of the filter should be updated. Some filters have no internal state. More complex filters must keep track of previously encountered information in order to execute efficiently. Some filters can decide whether a containble component is filtered on a case by case basis, for example a filter that passes containble component whose name starts with the letter "A". Other filters need to consider multiple containble component at once in order to make a decision, for example a filter that only passes containble components whose names are pair of a .C/.h pair, (if a containble component named foo.C existed, it would only pass through the filtered of a containble component named foo.h also existed). Sophisticated filters like this can be implemented more efficiently if they maintain internal state which caches information about all the containble. components being presented. Sync Up gives the filter a chance to rebuild this cache when a large change occurs.
virtual void
GiveReferences(TFunnelFor<TContainableComponentInfo>& funnel) = 0;
When GiveReferences is called, a request is being made for the complete output of the filter. The filter should iterate over all the items and transfer them to the funnel which is passive iteration mechanism. Filters are required to give the
TContainableComponenrinfo's in the same order that it would receive them if it called GiveReferences on the source. This is important to allow filters to be used on a sorted list of containble components.
virtual void Add(TContainableComponentlnfoCollection& added,
TContainableComponentInfoCollection& changedResult) = 0;
Add is passed two collections: add is a collection of those containable components that have been added to the source and should be considered by the filter - update the filter's internal state (if any) and decide whether or not each containable component should be filtered out. ChangedResult is used by more sophisticated filters that may change their mind about previously seen containable components when a new one is added. For example, a filter that only allows documents to pass if they are part of a .C or a .h pair may have previously filtered foo.h because foo.C was not in the source. When foo.C is added, it needs to unfilter foo.h - therefore an unfiltered foo.h would be added to the changedResult.
virtual void Remove(TContainableComponentInfoCoUection& removed,
TContainableComponentInfoCollection& changedResult) = 0;
Remove is very similar to Add except that instead of considering containable components that have been added to the source, it considers ones that have been removed.
virtual void Change (const MContainableComponentSource* source,
TContainableComponentInfoCollection& changed, TContainableComponentInfoCollection& changedResult) = 0;
Change is very similar to Add except that instead of considering containable components that have been added to the source, it considers ones that have changed in some way. Essentially, this allows for some optimization. The net result of a change should be the same as removing and re-adding the item. One possible implementation of Change is to call Remove and then Add! Changes in containble components are important to filtering because the change may change the result of the filter. For example if the filter only passes containble components whose name starts with "A" and a containble component changes its name from "Apple" to "Pear", then the filter which previously passed this containble component needs to reverse its decision and mark the containble component as filtered. Filter IDs
The final step in developing a filter, is to create a TContainerFilterlD subclass which serves as a light-weight representation of the filter. TContainerFilterlD's have 3 primary functions which include:
1. create a filter;
2. create a label to represent that filter in a menu; and
3. create a unique token that acts as an identifier.
class TContainerFilterlD : public MCollectible { public:
VersionDeclarationsMacro(TContainerFilterΙD); TContainerFilterID(const TContainerFilterID&) ; virtual ~TContainerFilterID();
TContainerFilterID& operator=(const
TContainerFilterID&) ; virtual TStream& operator»=(TStream&) const; virtual TStream& operator«=(TStream&); virtual long Hash() const; virtual Boolean IsEqual( const MCollectible*) const;
// provide menu label, TContainerPresenterState support virtual TLabel* CreateLabelO const = 0; virtual TContainerFilter*
CreateContainerFilter(MContainableComponentSource* toAlias) const = 0;
// must same return unique identifier as corresponding TContainerFilter virtual TToken GetTokenO const = 0;
#ifndef NO_Internal private: enum EVersion { kVersionl };
#endif }; Adding a New Filter Once a new filter is created by a developer, it is simple to add it to the Filter Framework. The new filter ID is written into a file and placed in a "filters" directory on the disk. When creating the "filters" menu, this directory is scanned and all filter IDs found are made available to the user. Said another way, when the menu of available filters is being constructed, all the IDs found in files in the "filters" directory are consulted for a name. These names are placed in the "filter" menu. When one of these menu items is selected by the user, the ID for that name is used to constructor the actual filter object using the CreateContainerFilter method. One of ordinary skill in the art will readily comprehend based on a careful review of the architecture set forth herein that filters can readily be cascaded without departing from the invention. Thus, if two or more filters are defined, they can be joined in series to apply a variety of filters to a view before the view is redisplayed.
While the invention is described in terms of preferred embodiments in a specific system environment, those skilled in the art will recognize that the invention can be practiced, with modification, in other and different hardware and software environments within the spirit and scope of the appended claims.

Claims

Having thus described our invention, what we claim as new, and desire to secure by Letters Patent is:
1 1. An apparatus for filtering items in a window, comprising:
2 (a) a processor;
3 (b) a storage connected to and controlled by said processor;
4 (c) a display connected to and controlled by said processor;
5 (d) an object-oriented operating system resident in said
6 storage and under the control of said processor;
7 (e) a view framework in said object-oriented operating
8 system for managing a window on said display;
9 ( ) a container framework in said object-oriented operating 0 system for storing and manipulating information indicative 1 of each item displayed in said window on said display; and 2 (g) a filter framework in said object-oriented operating 3 system containing a method and data which respond to 4 selection of a particular filter object and applying of a 5 filter object criteria stored in said particular filter object to 6 said each item displayed in said window.
1 2. An apparatus as recited in claim 1 , including means for
2 displaying an indicia of filtered out items by bundling the
-> .*> filtered out items and only displaying the items matching
4 the filter criteria.
1 3. An apparatus as recited in claim 1, including a component
2 framework for storing properties of items as XXX in YYY.
1 4. An apparatus as recited in claim 1 , including means for displaying an indicia of filtered out items by displaying a count of items currently meeting the filter object criteria.
1 5. An apparatus as recited in claim 1, including means for cascading a set of filter objects within the filter framework. 6. A method for filtering items in a window of a computer with a processor, a storage connected to and controlled by said processor, a display connected to and controlled by said processor, an object-oriented operating system resident in said storage and under the control of said processor, comprising the steps of: (a) managing a window on said display by utilizing a view framework in said object-oriented operating system; (b) storing and manipulating information indicative of each item displayed in said window on said display utilizing a container framework in said object-oriented operating system; and (c) responding to selection of a particular filter object and applying a filter object criteria stored in said particular filter object to said each item displayed in said window utilizing a filter framework in said object-oriented operating system.
7. A method as recited in claim 6, including the step of displaying an indicia of filtered out items by bundling the filtered out items and only displaying the items matching the filter criteria.
8. An apparatus as recited in claim 6, including the step of storing properties of items as XXX in YYY in a component framework.
9. An apparatus as recited in claim 6, including the step of displaying an indicia of filtered out items by displaying a count of items currently meeting the filter object criteria.
10. An apparatus as recited in claim 6, including the step of cascading a set of filter objects within the filter framework.
PCT/US1995/009320 1994-07-25 1995-07-20 Object-oriented operating system enhancement for filtering items in a window WO1996003691A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
DE69503052T DE69503052T2 (en) 1994-07-25 1995-07-20 IMPROVED OBJECT-ORIENTED OPERATING SYSTEM FOR FILTERING DATA OBJECTS IN A WINDOW
EP95928675A EP0772824B1 (en) 1994-07-25 1995-07-20 Object-oriented operating system enhancement for filtering items in a window

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/280,169 US5680563A (en) 1994-07-25 1994-07-25 Object-oriented operating system enhancement for filtering items in a window
US08/280,169 1994-07-25

Publications (1)

Publication Number Publication Date
WO1996003691A1 true WO1996003691A1 (en) 1996-02-08

Family

ID=23071975

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1995/009320 WO1996003691A1 (en) 1994-07-25 1995-07-20 Object-oriented operating system enhancement for filtering items in a window

Country Status (4)

Country Link
US (1) US5680563A (en)
EP (1) EP0772824B1 (en)
DE (1) DE69503052T2 (en)
WO (1) WO1996003691A1 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0992898A1 (en) * 1998-09-21 2000-04-12 Hewlett-Packard Company Using a namespace extension to selectively display files read from a computer readable drive
GB2380576A (en) * 1997-09-21 2003-04-09 Microsoft Corp Stardard user interface control display for a data provider
EP1412881A1 (en) * 2001-07-11 2004-04-28 Apple Computer, Inc. Method and apparatus for managing file extensions in a digital processing system

Families Citing this family (63)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6025827A (en) * 1994-04-07 2000-02-15 International Business Machines Corporation Digital image capture control
KR960008583A (en) * 1994-08-26 1996-03-22 윌리암 티. 엘리스 Data Processing Systems and Methods for Managing Data Processing Systems
US5838317A (en) * 1995-06-30 1998-11-17 Microsoft Corporation Method and apparatus for arranging displayed graphical representations on a computer interface
US5831617A (en) * 1995-11-27 1998-11-03 Bhukhanwala; Saumil A. Browsing and manipulating objects using movie like icons
US6269407B1 (en) * 1996-03-14 2001-07-31 International Business Machines Corporation Method and system for data filtering within an object-oriented data
US5913215A (en) * 1996-04-09 1999-06-15 Seymour I. Rubinstein Browse by prompted keyword phrases with an improved method for obtaining an initial document set
US5794233A (en) * 1996-04-09 1998-08-11 Rubinstein; Seymour I. Browse by prompted keyword phrases
US5822599A (en) * 1996-12-17 1998-10-13 Intel Corporation Method and apparatus for selectively activating a computer display for power management
US5912668A (en) * 1997-05-30 1999-06-15 Sony Corporation Controlling a screen display of a group of images represented by a graphical object
US6279016B1 (en) * 1997-09-21 2001-08-21 Microsoft Corporation Standardized filtering control techniques
US6108664A (en) 1997-10-31 2000-08-22 Oracle Corporation Object views for relational data
JP3737334B2 (en) * 2000-03-21 2006-01-18 シャープ株式会社 Image information processing apparatus, image information processing method, recording medium, and transmission medium
US20080060011A1 (en) * 2000-12-22 2008-03-06 Hillcrest Laboratories, Inc. Zoomable user interfaces for television
US20020135614A1 (en) * 2001-03-22 2002-09-26 Intel Corporation Updating user interfaces based upon user inputs
US7124372B2 (en) * 2001-06-13 2006-10-17 Glen David Brin Interactive communication between a plurality of users
JP2003076719A (en) * 2001-06-22 2003-03-14 Sony Computer Entertainment Inc Information reading program, recording medium recored with information reading program, apparatus and method for reading information, program for generating information, recording medium recorded with program for generating information, apparatus and method for generating information, and information generation reading system
US7769794B2 (en) * 2003-03-24 2010-08-03 Microsoft Corporation User interface for a file system shell
US7712034B2 (en) * 2003-03-24 2010-05-04 Microsoft Corporation System and method for shell browser
US7240292B2 (en) 2003-04-17 2007-07-03 Microsoft Corporation Virtual address bar user interface control
US7234114B2 (en) 2003-03-24 2007-06-19 Microsoft Corporation Extensible object previewer in a shell browser
US7421438B2 (en) * 2004-04-29 2008-09-02 Microsoft Corporation Metadata editing control
US7188316B2 (en) * 2003-03-24 2007-03-06 Microsoft Corporation System and method for viewing and editing multi-value properties
US7823077B2 (en) 2003-03-24 2010-10-26 Microsoft Corporation System and method for user modification of metadata in a shell browser
US7627552B2 (en) 2003-03-27 2009-12-01 Microsoft Corporation System and method for filtering and organizing items based on common elements
US7409644B2 (en) 2003-05-16 2008-08-05 Microsoft Corporation File system shell
US7827561B2 (en) * 2003-03-26 2010-11-02 Microsoft Corporation System and method for public consumption of communication events between arbitrary processes
US7890960B2 (en) * 2003-03-26 2011-02-15 Microsoft Corporation Extensible user context system for delivery of notifications
US7587411B2 (en) * 2003-03-27 2009-09-08 Microsoft Corporation System and method for filtering and organizing items based on common elements
US7925682B2 (en) 2003-03-27 2011-04-12 Microsoft Corporation System and method utilizing virtual folders
US7650575B2 (en) 2003-03-27 2010-01-19 Microsoft Corporation Rich drag drop user interface
US7499925B2 (en) 2003-03-27 2009-03-03 Microsoft Corporation File system for displaying items of different types and from different physical locations
US7536386B2 (en) 2003-03-27 2009-05-19 Microsoft Corporation System and method for sharing items in a computer system
US7526483B2 (en) 2003-03-27 2009-04-28 Microsoft Corporation System and method for virtual folder sharing including utilization of static and dynamic lists
US20040249849A1 (en) * 2003-06-05 2004-12-09 Michael Mordkovich Conversion system
US20040255289A1 (en) * 2003-06-11 2004-12-16 Citycites.Com Corp. Remote access software solution for rapidly deploying a desktop
US8024335B2 (en) 2004-05-03 2011-09-20 Microsoft Corporation System and method for dynamically generating a selectable search extension
US7181463B2 (en) 2003-10-24 2007-02-20 Microsoft Corporation System and method for managing data using static lists
US8091044B2 (en) * 2003-11-20 2012-01-03 International Business Machines Corporation Filtering the display of files in graphical interfaces
US20050166143A1 (en) * 2004-01-22 2005-07-28 David Howell System and method for collection and conversion of document sets and related metadata to a plurality of document/metadata subsets
US7441186B2 (en) * 2004-01-23 2008-10-21 Microsoft Corporation System and method for automatically grouping items
US20050166156A1 (en) * 2004-01-23 2005-07-28 Microsoft Corporation System and method for automatically grouping items
US7657846B2 (en) * 2004-04-23 2010-02-02 Microsoft Corporation System and method for displaying stack icons
US7694236B2 (en) * 2004-04-23 2010-04-06 Microsoft Corporation Stack icons representing multiple objects
US7992103B2 (en) 2004-04-26 2011-08-02 Microsoft Corporation Scaling icons for representing files
US20050240878A1 (en) * 2004-04-26 2005-10-27 Microsoft Corporation System and method for scaling icons
US8707209B2 (en) 2004-04-29 2014-04-22 Microsoft Corporation Save preview representation of files being created
US20050246650A1 (en) * 2004-04-30 2005-11-03 Yeung Simon D User interfaces for displaying content and methods of using the same
US7496583B2 (en) 2004-04-30 2009-02-24 Microsoft Corporation Property tree for metadata navigation and assignment
US20050246327A1 (en) * 2004-04-30 2005-11-03 Yeung Simon D User interfaces and methods of using the same
US8108430B2 (en) 2004-04-30 2012-01-31 Microsoft Corporation Carousel control for metadata navigation and assignment
US7383503B2 (en) 2005-02-23 2008-06-03 Microsoft Corporation Filtering a collection of items
US8490015B2 (en) * 2005-04-15 2013-07-16 Microsoft Corporation Task dialog and programming interface for same
US7614016B2 (en) * 2005-04-21 2009-11-03 Microsoft Corporation Multiple roots in navigation pane
US7162488B2 (en) * 2005-04-22 2007-01-09 Microsoft Corporation Systems, methods, and user interfaces for storing, searching, navigating, and retrieving electronic information
US8522154B2 (en) 2005-04-22 2013-08-27 Microsoft Corporation Scenario specialization of file browser
US8195646B2 (en) 2005-04-22 2012-06-05 Microsoft Corporation Systems, methods, and user interfaces for storing, searching, navigating, and retrieving electronic information
US7720904B2 (en) * 2005-05-27 2010-05-18 Microsoft Corporation Entity projection
US7665028B2 (en) 2005-07-13 2010-02-16 Microsoft Corporation Rich drag drop user interface
US7801856B2 (en) * 2006-08-09 2010-09-21 Oracle International Corporation Using XML for flexible replication of complex types
US8438493B2 (en) * 2010-12-08 2013-05-07 Sap Ag Preset navigator
US20130097566A1 (en) * 2011-10-17 2013-04-18 Carl Fredrik Alexander BERGLUND System and method for displaying items on electronic devices
EP3364637B1 (en) * 2015-12-22 2020-08-26 Huawei Technologies Co., Ltd. Method and apparatus for filtering object by means of pressure
US10895954B2 (en) * 2017-06-02 2021-01-19 Apple Inc. Providing a graphical canvas for handwritten input

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5315703A (en) * 1992-12-23 1994-05-24 Taligent, Inc. Object-oriented notification framework system

Family Cites Families (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4821220A (en) * 1986-07-25 1989-04-11 Tektronix, Inc. System for animating program operation and displaying time-based relationships
US4885717A (en) * 1986-09-25 1989-12-05 Tektronix, Inc. System for graphically representing operation of object-oriented programs
US4891630A (en) * 1988-04-22 1990-01-02 Friedman Mark B Computer vision system with improved object orientation technique
US4953080A (en) * 1988-04-25 1990-08-28 Hewlett-Packard Company Object management facility for maintaining data in a computer system
EP0347162A3 (en) * 1988-06-14 1990-09-12 Tektronix, Inc. Apparatus and methods for controlling data flow processes by generated instruction sequences
US5041992A (en) * 1988-10-24 1991-08-20 University Of Pittsburgh Interactive method of developing software interfaces
US5133075A (en) * 1988-12-19 1992-07-21 Hewlett-Packard Company Method of monitoring changes in attribute values of object in an object-oriented database
US5050090A (en) * 1989-03-30 1991-09-17 R. J. Reynolds Tobacco Company Object placement method and apparatus
US5060276A (en) * 1989-05-31 1991-10-22 At&T Bell Laboratories Technique for object orientation detection using a feed-forward neural network
US5125091A (en) * 1989-06-08 1992-06-23 Hazox Corporation Object oriented control of real-time processing
US5181162A (en) * 1989-12-06 1993-01-19 Eastman Kodak Company Document management and production system
US5093914A (en) * 1989-12-15 1992-03-03 At&T Bell Laboratories Method of controlling the execution of object-oriented programs
US5075848A (en) * 1989-12-22 1991-12-24 Intel Corporation Object lifetime control in an object-oriented memory protection mechanism
US5151987A (en) * 1990-10-23 1992-09-29 International Business Machines Corporation Recovery objects in an object oriented computing environment
US5119475A (en) * 1991-03-13 1992-06-02 Schlumberger Technology Corporation Object-oriented framework for menu definition
US5504852A (en) * 1991-09-09 1996-04-02 Apple Computer, Inc. Method for creating a collection of aliases representing computer system files
JPH0744568A (en) * 1993-07-30 1995-02-14 Mitsubishi Electric Corp Retrieval interface device
US5388264A (en) * 1993-09-13 1995-02-07 Taligent, Inc. Object oriented framework system for routing, editing, and synchronizing MIDI multimedia information using graphically represented connection object

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5315703A (en) * 1992-12-23 1994-05-24 Taligent, Inc. Object-oriented notification framework system

Non-Patent Citations (4)

* Cited by examiner, † Cited by third party
Title
"Grahical User Interface for LAN NetView Fix - Event Log Filter Notebook", IBM TECHNICAL DISCLOSURE BULLETIN, vol. 37, no. 4B, April 1994 (1994-04-01), NEW YORK, US, pages 423 - 425 *
"X.400 SMARTMAIL FILTER OBJECT ARCHITECTURE", IBM TECHNICAL DISCLOSURE BULLETIN, vol. 34, no. 7A, December 1991 (1991-12-01), NEW YORK, US, pages 83 - 84 *
PETER HAGGAR & PETER BRIGHTBILL:: "Programming the OS/2 Container Control: By Example", IBM OS/2 DEVELOPER, vol. 5, no. 2, USA, pages 48 - 59 *
See also references of EP0772824A1 *

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2380576A (en) * 1997-09-21 2003-04-09 Microsoft Corp Stardard user interface control display for a data provider
GB2380576B (en) * 1997-09-21 2003-12-17 Microsoft Corp Displaying on a display device a control window area used to filter data
EP0992898A1 (en) * 1998-09-21 2000-04-12 Hewlett-Packard Company Using a namespace extension to selectively display files read from a computer readable drive
EP1412881A1 (en) * 2001-07-11 2004-04-28 Apple Computer, Inc. Method and apparatus for managing file extensions in a digital processing system
EP1412881A4 (en) * 2001-07-11 2007-07-04 Apple Computer Method and apparatus for managing file extensions in a digital processing system
US7792881B2 (en) 2001-07-11 2010-09-07 Apple Inc. Method and apparatus for managing file extensions in a digital processing system
US8190656B2 (en) 2001-07-11 2012-05-29 Apple Inc. Method and apparatus for managing file extensions in a digital processing system

Also Published As

Publication number Publication date
DE69503052D1 (en) 1998-07-23
DE69503052T2 (en) 1999-01-21
US5680563A (en) 1997-10-21
EP0772824B1 (en) 1998-06-17
EP0772824A1 (en) 1997-05-14

Similar Documents

Publication Publication Date Title
US5680563A (en) Object-oriented operating system enhancement for filtering items in a window
US7546602B2 (en) Application program interface for network software platform
Mørch Three levels of end-user tailoring: Customization, integration, and extension
US7577938B2 (en) Data association
US5768510A (en) Object-oriented system, method and article of manufacture for a client-server application enabler system
EP0827077B1 (en) Object-oriented system, method and computer program for a client-server failure reporting process
US5848246A (en) Object-oriented system, method and article of manufacture for a client-server session manager in an interprise computing framework system
US5379430A (en) Object-oriented system locator system
US5761684A (en) Method and reusable object for scheduling script execution in a compound document
US6052711A (en) Object-oriented system, method and article of manufacture for a client-server session web access in an interprise computing framework system.
EP0827075A2 (en) Object-oriented system, method and article of manufacture for a client-server state machine framework
EP0836139A2 (en) Object-oriented system, method and article of manufacture for a client-server graphical user interface framework in an interprise computing framework system
EP0827074A2 (en) A system, method and article of manufacture for a distributed computer system framework
EP0844558A2 (en) Object-oriented system, method and article of manufature for a client-server event driver message framework in an interprise computing framework system
EP0822490A2 (en) Object-oriented system, method and article of manufacture for a client-server communication framework
EP0822489A2 (en) Object-oriented system, method and article of manufacture for a client-server system with a client program cache
EP0822491A2 (en) Object-oriented system, method and article of manufacture for migrating a client-server application
EP0834804A2 (en) Object-oriented system, method and article of manifacture for a client-server state machine in an interprise computing framework system
EP0827073A2 (en) Object-oriented system, method and article of manufacture for a client-server-centric enterprise computing framework system
WO1996018157A2 (en) Object-oriented system for configuration history management
WO1995004966A1 (en) Object-oriented locator system
WO1995015524A1 (en) Method and apparatus for displaying hardware dependent graphics in an object-oriented operating system
WO1998038573A1 (en) Asynchronous-event opening component of a network component system
US6111579A (en) Data processor controlled display system with a tree hierarchy of elements view having virtual nodes
EP0827076A2 (en) Object-oriented system, method and article of manufacture for a presentation engine in an interprise computing framework system

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): CA CN JP

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FR GB GR IE IT LU MC NL PT SE

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 1995928675

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1995928675

Country of ref document: EP

NENP Non-entry into the national phase

Ref country code: CA

WWG Wipo information: grant in national office

Ref document number: 1995928675

Country of ref document: EP