Skip to content

Commit

Permalink
Adding DefaultDisksPopupFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Jun 21, 2022
1 parent 52178fd commit 725d8cb
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestSections>
<manifestSection>
<name>org/luwrain</name>
<manifestEntries>
<Extensions>org.luwrain.windows.Extension</Extensions>
</manifestEntries>
</manifestSection>
</manifestSections>


</archive>
</configuration>
</plugin>
Expand Down
63 changes: 63 additions & 0 deletions src/main/java/org/luwrain/windows/DefaultDisksPopupFactory.java
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;
}
}
}
29 changes: 29 additions & 0 deletions src/main/java/org/luwrain/windows/Extension.java
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())
};
}
}
5 changes: 5 additions & 0 deletions src/main/java/org/luwrain/windows/Windows.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ interface ChannelBasicData
String getType();
};

@Override public String escapeString(String style, String str)
{
return str;
}

@Override public InitResult init(PropertiesBase props)
{
NullCheck.notNull(props, "props");
Expand Down

0 comments on commit 725d8cb

Please sign in to comment.