forked from jakob/TableTool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added drag and drop support for the document table view
* using drag and drop, (single and multiple selections of) table view rows can now be moved * dragged table view rows are now also placed in the NSPasteBoard in textual CSV form (enables dropping into other applications)
- Loading branch information
1 parent
0456acb
commit d860c6e
Showing
4 changed files
with
156 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// Constants.h | ||
// Table Tool | ||
// | ||
// Created by Martin Koehler on 12.06.17. | ||
// Copyright (c) 2017 Egger Apps. All rights reserved. | ||
// | ||
|
||
#include <Cocoa/Cocoa.h> | ||
|
||
#pragma mark Pasteboard Types | ||
|
||
extern NSString *TTRowInternalPboardType; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// Constants.h | ||
// Table Tool | ||
// | ||
// Created by Martin Koehler on 12.06.17. | ||
// Copyright (c) 2017 Egger Apps. All rights reserved. | ||
// | ||
|
||
#include "Constants.h" | ||
|
||
#pragma mark Initializing Globals for Pasteboard Types | ||
|
||
NSString *TTRowInternalPboardType = @"Table Tool Row Internal PasteBoard Type"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters