~ubuntu-branches/ubuntu/raring/muse/raring-proposed

« back to all changes in this revision

Viewing changes to muse/functions.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2012-11-22 01:16:59 UTC
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: package-import@ubuntu.com-20121122011659-a2fwbf33ceqe1s0t
Tags: upstream-2.1~rc1
ImportĀ upstreamĀ versionĀ 2.1~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
bool paste_notes(Part* paste_into_part=NULL); // shows a dialog
89
89
void paste_notes(int max_distance=3072, bool always_new_part=false, bool never_new_part=false, Part* paste_into_part=NULL, int amount=1, int raster=3072);
90
90
QMimeData* selected_events_to_mime(const std::set<Part*>& parts, int range);
 
91
QMimeData* parts_to_mime(const std::set<Part*>& parts);
 
92
 
 
93
 
91
94
void paste_at(const QString& pt, int pos, int max_distance=3072, bool always_new_part=false, bool never_new_part=false, Part* paste_into_part=NULL, int amount=1, int raster=3072);
92
95
 
93
96
//functions for selections
105
108
bool merge_selected_parts();
106
109
bool merge_parts(const std::set<Part*>& parts);
107
110
 
 
111
// internal
 
112
QMimeData* file_to_mimedata(FILE *datafile, QString mimeType);
 
113
 
108
114
} // namespace MusECore
109
115
 
110
116
#endif