blob: 280614d0b1fcd6b36fad4172181e94ddf1dbe732 [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.codeEditor.printing;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.progress.ProcessCanceledException;
import com.intellij.openapi.util.Pair;
import com.intellij.psi.PsiFile;
import java.awt.*;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.util.List;
class MultiFilePainter extends BasePainter {
private final List<Pair<PsiFile, Editor>> myFilesList;
private int myFileIndex = 0;
private int myStartPageIndex = 0;
private TextPainter myTextPainter = null;
public MultiFilePainter(List<Pair<PsiFile, Editor>> filesList) {
myFilesList = filesList;
}
@Override
public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
if (myProgress.isCanceled()) {
return Printable.NO_SUCH_PAGE;
}
while (myFileIndex < myFilesList.size()) {
if (myTextPainter == null) {
Pair<PsiFile, Editor> pair = myFilesList.get(myFileIndex);
myTextPainter = PrintManager.initTextPainter(pair.first, pair.second);
}
if (myTextPainter != null) {
myTextPainter.setProgress(myProgress);
int ret = 0;
try {
ret = myTextPainter.print(g, pageFormat, pageIndex - myStartPageIndex);
}
catch (ProcessCanceledException ignored) { }
if (myProgress.isCanceled()) {
return Printable.NO_SUCH_PAGE;
}
if (ret == Printable.PAGE_EXISTS) {
return Printable.PAGE_EXISTS;
}
myTextPainter.dispose();
myTextPainter = null;
myStartPageIndex = pageIndex;
}
myFileIndex++;
}
return Printable.NO_SUCH_PAGE;
}
@Override
void dispose() {
if (myTextPainter != null) {
myTextPainter.dispose();
myTextPainter = null;
}
}
}