-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52178fd
commit 725d8cb
Showing
4 changed files
with
107 additions
and
0 deletions.
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
63 changes: 63 additions & 0 deletions
63
src/main/java/org/luwrain/windows/DefaultDisksPopupFactory.java
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,63 @@ | ||
/* | ||
Copyright 2012-2022 Michael Pozhidaev <[email protected]> | ||
This file is part of LUWRAIN. | ||
LUWRAIN is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
LUWRAIN is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
*/ | ||
|
||
package org.luwrain.windows; | ||
|
||
import java.util.*; | ||
import java.io.*; | ||
|
||
import org.luwrain.core.*; | ||
import org.luwrain.popups.*; | ||
|
||
public final class DefaultDisksPopupFactory implements DisksPopup.Factory | ||
{ | ||
@Override public DisksPopup.Disks newDisks(Luwrain luwrain) | ||
{ | ||
return new DisksImpl(); | ||
} | ||
|
||
private final class DisksImpl implements DisksPopup.Disks | ||
{ | ||
@Override public DisksPopup.Disk[] getDisks() | ||
{ | ||
final List<DiskImpl> res = new ArrayList<>(); | ||
return res.toArray(new DisksPopup.Disk[res.size()]); | ||
} | ||
} | ||
|
||
private final class DiskImpl implements DisksPopup.Disk | ||
{ | ||
final String | ||
title, path; | ||
DiskImpl(String path) | ||
{ | ||
this.title = path; | ||
this.path = path; | ||
} | ||
@Override public boolean isActivated() | ||
{ | ||
return true; | ||
} | ||
@Override public File activate() | ||
{ | ||
return new File(path); | ||
} | ||
@Override public String toString() | ||
{ | ||
return title; | ||
} | ||
} | ||
} |
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,29 @@ | ||
/* | ||
Copyright 2012-2022 Michael Pozhidaev <[email protected]> | ||
This file is part of LUWRAIN. | ||
LUWRAIN is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
LUWRAIN is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
*/ | ||
|
||
package org.luwrain.windows; | ||
|
||
import org.luwrain.core.*; | ||
|
||
public final class Extension extends EmptyExtension | ||
{ | ||
@Override public ExtensionObject[] getExtObjects(Luwrain luwrain) | ||
{ | ||
return new ExtensionObject[]{ | ||
new SimpleObjFactory("disks-popup-factory-windows", "org.luwrain.windows.DefaultDisksPopupFactory", ()->new DefaultDisksPopupFactory()) | ||
}; | ||
} | ||
} |
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