mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
You may now do: mkdir build cd build ../configure ./audacity And all but one directory will remain unmolested...no more object files in "src". And if you look carefully, you'll see that the newly built "audacity" is copied to the top of the build tree...no more having to use "src/audacity" to run. You can of course still do the configure from the top and get all of the objects strewn about the tree. I still haven't figured out how to keep the locale directory from getting soiled. I'm not really sure there's a way around it really.
68 lines
2.0 KiB
C
68 lines
2.0 KiB
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
FileDialog.h
|
|
|
|
Leland Lucius
|
|
|
|
*******************************************************************//**
|
|
|
|
\class FileDialog
|
|
\brief Dialog used to present platform specific "Save As" dialog with
|
|
custom controls.
|
|
|
|
*//*******************************************************************/
|
|
|
|
#ifndef _FILE_DIALOG_H_
|
|
#define _FILE_DIALOG_H_
|
|
|
|
#include "wx/defs.h"
|
|
#include "wx/filedlg.h"
|
|
|
|
typedef void (*fdCallback)(void *, int);
|
|
|
|
#if defined(__WXGTK__)
|
|
#include "gtk/FileDialogPrivate.h"
|
|
#elif defined(__WXMAC__)
|
|
#include "mac/FileDialogPrivate.h"
|
|
#elif defined(__WXMSW__)
|
|
#include "win/FileDialogPrivate.h"
|
|
#else
|
|
#error Unknown implementation
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: filedlg.h
|
|
// Purpose: wxFileDialog base header
|
|
// Author: Robert Roebling
|
|
// Modified by: Leland Lucius
|
|
// Created: 8/17/99
|
|
// Copyright: (c) Robert Roebling
|
|
// RCS-ID: $Id: FileDialog.h,v 1.9 2008-05-24 02:57:39 llucius Exp $
|
|
// Licence: wxWindows licence
|
|
//
|
|
// Modified for Audacity to support an additional button on Save dialogs
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
DECLARE_EVENT_TYPE(EVT_FILEDIALOG_SELECTION_CHANGED, -1);
|
|
DECLARE_EVENT_TYPE(EVT_FILEDIALOG_FILTER_CHANGED, -1);
|
|
DECLARE_EVENT_TYPE(EVT_FILEDIALOG_ADD_CONTROLS, -1);
|
|
|
|
//----------------------------------------------------------------------------
|
|
// wxFileDialog convenience functions
|
|
//----------------------------------------------------------------------------
|
|
|
|
wxString
|
|
FileSelector(const wxString & message = wxFileSelectorPromptStr,
|
|
const wxString & default_path = wxEmptyString,
|
|
const wxString & default_filename = wxEmptyString,
|
|
const wxString & default_extension = wxEmptyString,
|
|
const wxString & wildcard = wxFileSelectorDefaultWildcardStr,
|
|
int flags = 0,
|
|
wxWindow *parent = NULL);
|
|
|
|
#endif
|
|
|