home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Class: TURLWindow
- // Include File: turlwind.h
- // Purpose: Provide a window for the viewing of a URL.
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 03-28-94 created
- #include"turlwind.h"
-
- void TURLWindow::IndexInit() {
- // Purpose: The currently owned view is a searchable index.
- // Query the user for a search value and take
- // appropriate actions.
- // Arguments: void
- // Return Value: void
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 03-28-94 created
-
- // Enable the search index command.
- enableCommand(cmSearchIndex);
-
-
- // Do set a member to know that this is an index in case we
- // receive an incorrect request to search.
- B_isIndex = True;
- }